export type DeepPartial = T extends object ? { [P in keyof T]?: DeepPartial; } : T; export type Optional = Pick, K> & Omit; //# sourceMappingURL=types.d.ts.map