UNPKG

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