UNPKG

@thi.ng/api

Version:
6 lines 207 B
export type Nullable<T> = T | null | undefined; /** * Similar to `NonNullable`, but only excludes `undefined`. */ export type Always<T> = T extends undefined ? never : T; //# sourceMappingURL=null.d.ts.map