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