DeepPartial<T>: T extends object ? { [P in keyof T]?: DeepPartial<T[P]> } : T
T
object
{ [P in keyof T]?: DeepPartial<T[P]> }
• T
src/types.ts:13