/** * Make the specified keys optional in an object. */ export type WithOptional = Omit & { [P in K]?: T[P]; }; //# sourceMappingURL=WithOptional.d.ts.map