skex
Version:
A modern schema validation and filtration library with great TypeScript support.
26 lines (21 loc) • 732 B
text/typescript
/* IMPORT */
import And from './and';
import Any from './any';
import Array from './array';
import BigInt from './bigint';
import Boolean from './boolean';
import Nillable from './nillable';
import Null from './null';
import Nullable from './nullable';
import Number from './number';
import Object from './object';
import Optional from './optional';
import Or from './or';
import Record from './record';
import String from './string';
import Symbol from './symbol';
import Tuple from './tuple';
import Undefined from './undefined';
import Unknown from './unknown';
/* EXPORT */
export {And, Any, Array, BigInt, Boolean, Null, Nillable, Nullable, Number, Object, Optional, Or, Record, String, Symbol, Tuple, Undefined, Unknown};