/** * @type DeepPartial makes all properties of type T optional, but keep * array types intact */ export type DeepPartial = { [K in keyof T]?: T[K] extends Array ? Array : DeepPartial; };