UNPKG

245 BTypeScriptView Raw
1export type Maybe<T> = T | undefined;
2export type Nullable<T> = T | null | undefined;
3/**
4 * Similar to `NonNullable`, but only excludes `undefined`.
5 */
6export type Always<T> = T extends undefined ? never : T;
7//# sourceMappingURL=null.d.ts.map
\No newline at end of file