UNPKG

@cspell/cspell-tools

Version:
7 lines 206 B
/** * Make all properties in T required, but keep the original optionality of the properties. */ export type RequireFields<T> = { [P in keyof Required<T>]: T[P]; }; //# sourceMappingURL=types.d.ts.map