/** * Deep version of `Partial` that will make all its keys and subkeys * optional. */ export type DeepPartial = T extends object ? { [P in keyof T]?: DeepPartial; } : T; //# sourceMappingURL=DeepPartial.d.ts.map