UNPKG

typedash

Version:

modern, type-safe collection of utility functions

8 lines 215 B
//#region src/types/Maybe.d.ts /** * Represents a value that may be `null` or `undefined`. */ type Maybe<T> = T | null | undefined; //#endregion export { Maybe as t }; //# sourceMappingURL=Maybe-BVpZiDsE.d.cts.map