@alextheman/utility - v4.3.5
    Preparing search index...

    Type Alias DisallowUndefined<InputType>

    DisallowUndefined: undefined extends InputType
        ? ["Error: Generic type cannot include undefined"]
        : InputType

    Resolves to an error message type if the type argument could potentially be undefined.

    Type Parameters

    • InputType

      The type to disallow undefined on.