import type { Option } from '../../../mod.js'; /** ## option : 将任意类型转化为Option类型(浅遍历) + null | underfind ->`None` + other ->`Some` @example ```ts const a = option(1) assertEquals(a.is_some, true) const b = option(null) assertEquals(b.is_none, true) ``` @category TypeClass */ export declare function option(value: T): Option; //# sourceMappingURL=helper.d.ts.map