UNPKG

82 BTypeScriptView Raw
1export declare type PartialDeep<T> = {
2 [P in keyof T]?: PartialDeep<T[P]>;
3};