export type DeepPartial = { [P in keyof T]?: T[P] extends object ? DeepPartial : T[P]; }; export type Nullable = null | T; //# sourceMappingURL=utils.d.ts.map