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