@typed/io
Version:
Runtime IO type system
7 lines • 335 B
JavaScript
import * as G from '../guard';
import { Type } from './Type';
// tslint:disable-next-line:variable-name
export const Boolean = Type.fromGuard(G.Boolean, `Boolean`, `boolean`);
export const True = Type.fromGuard(G.True, `True`, `true`);
export const False = Type.fromGuard(G.False, `False`, `false`);
//# sourceMappingURL=Boolean.js.map