export type DeepPartial = T extends object ? T extends Array ? Array> : { [P in keyof T]?: DeepPartial; } : T;