/** * Same as Partial but goes deeper and makes Partial all its properties and sub-properties. */ export declare type DeepPartial = { [P in keyof T]?: DeepPartial; };