UNPKG

@typed/io

Version:

Runtime IO type system

8 lines 275 B
import { Maybe } from '@typed/maybe'; import { Guard } from './Guard'; declare const _Maybe: { is: (u: unknown) => u is Maybe<unknown>; }; export { _Maybe as Maybe }; export declare const maybe: <A>(guard: Guard<A>) => Guard<Maybe<A>>; //# sourceMappingURL=Maybe.d.ts.map