Type Alias: PartialStructWithNullPropsDeep<T>
PartialStructWithNullPropsDeep<
T
> = { [P in keyof T]?: T[P] extends object ? PartialStructWithNullPropsDeep<T[P]> | null : T[P] | null }
Defined in: online/state/merge.ts:5
Type Parameters
T
T
PartialStructWithNullPropsDeep<
T
> = { [P in keyof T]?: T[P] extends object ? PartialStructWithNullPropsDeep<T[P]> | null : T[P] | null }
Defined in: online/state/merge.ts:5
T