DeepNullableObject<T>
ts
type DeepNullableObject<T> = { [K in keyof T]: DeepNullable<T[K]> };Defined in: types.ts:238
Recursively applies DeepNullable to all properties of an object type.
Type Parameters
| Type Parameter | Description |
|---|---|
T extends object | object type to make nullable |