/** * @typedef DeepPartial * @ignore */ export type DeepPartial = { [P in keyof T]?: T[P] | DeepPartial; };