UNPKG
@minofrk/msf-io-ts
Version:
latest (0.2.0)
0.2.0
0.1.0
0.0.2
0.0.1
0.0.0
Type utilities with io-ts for MSF format.
github.com/minofrk/msf-io-ts
minofrk/msf-io-ts
@minofrk/msf-io-ts
/
esm
/
msf
/
fala-type.js
8 lines
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ union, literal, brand,
Int
}
from
'io-ts'
;
export
var
FalaType
=
union
([
literal
(
0
),
brand
(
Int
,
function
(
x
) {
return
0
<= x && x <=
2147483647
; },
'FalaType'
), ]);
//# sourceMappingURL=fala-type.js.map