UNPKG

cspell

Version:
7 lines 165 B
/** * Make all properties in T required */ export type RemoveUndefined<T> = { [P in keyof T]: Exclude<T[P], undefined>; }; //# sourceMappingURL=types.d.mts.map