UNPKG

@thi.ng/api

Version:
7 lines 245 B
export type Maybe<T> = T | undefined; 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