Type Alias NullableQualifiers<T>

NullableQualifiers: NoInfer<{ [K in keyof T]: NullableQualifier<T[K]> }>

Maps function parameter types to nullable qualifiers. Used for function injecting where null defines a pass-through parameter.

Type Parameters

  • T extends unknown[] = unknown[]

    The function parameter types to map.