Skip to content

DeepPartial

DeepPartial<T> = { [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P] }

Defined in: utils/types.ts:288

T