UNPKG
@typed/io
Version:
latest (1.2.0)
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
Runtime IO type system
@typed/io
/
esm
/
guard
/
Maybe.d.ts
8 lines
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
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