export type ElementType> = T extends ReadonlyArray ? ElementType : never; export type DeepPartial = { [P in keyof T]?: DeepPartial; };