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