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 Parameter | Description |
|---|---|
T extends unknown[] | Array type to make nullable |