UNPKG

@salad-labs/loopz-typescript

Version:
6 lines 159 B
/** * Represents a type that can either hold a value of type T or be null. */ type Maybe<T> = T | null; export { Maybe }; //# sourceMappingURL=maybe.d.ts.map