Skip to content

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 ParameterDescription
T extends objectobject type to make nullable