UNPKG

@alexaegis/common

Version:
7 lines 200 B
/** * Similar to `Required` but also removes `undefined` and `null` from the type */ export type Defined<T> = { [K in keyof T]-?: NonNullable<T[K]>; }; //# sourceMappingURL=defined.type.d.ts.map