Skip to content

DeepNullableArray<T>

ts
type DeepNullableArray<T> = T extends infer U[] ? DeepNullable<U>[] : T;

Defined in: types.ts:247

Recursively applies DeepNullable to array type.

Type Parameters

Type ParameterDescription
T extends unknown[]Array type to make nullable