UNPKG

@typed/io

Version:

Runtime IO type system

7 lines 322 B
import * as G from '../guard'; import { Decoder } from './Decoder'; // tslint:disable-next-line:variable-name export const Boolean = Decoder.fromGuard(G.Boolean, 'boolean'); export const True = Decoder.fromGuard(G.True, 'true'); export const False = Decoder.fromGuard(G.False, 'false'); //# sourceMappingURL=Boolean.js.map