UNPKG

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