UNPKG

@minofrk/msf-io-ts

Version:

Type utilities with io-ts for MSF format.

8 lines 231 B
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