UNPKG

asseton

Version:
6 lines (5 loc) 109 B
export type IDeepPartial<T> = T extends object ? { [P in keyof T]?: IDeepPartial<T[P]>; } : T;