UNPKG

@daiso-tech/core

Version:

The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.

28 lines 369 B
/** * @module Utilities */ /** * @internal */ export const OPTION = { SOME: "some", NONE: "none", }; /** * @internal */ export function optionSome(value) { return { type: OPTION.SOME, value, }; } /** * @internal */ export function optionNone() { return { type: OPTION.NONE, }; } //# sourceMappingURL=option.js.map