/** * Make all keys in `T` optional. For the specified keys `K`, make their values partial. */ export type NestedPartial = { [P in keyof T]?: P extends K ? Partial : T[P]; }; //# sourceMappingURL=NestedPartial.d.ts.map