//#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-pvX1mStM.d.ts.map