1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 | import { AnyType } from './any';
|
14 | import { ArrayType } from './array';
|
15 | import { BooleanType } from './boolean';
|
16 | import { BufferType } from './buffer';
|
17 | import { DateType } from './date';
|
18 | import { ModelType } from './model';
|
19 | import { NullType } from './null';
|
20 | import { NumberType } from './number';
|
21 | import { ObjectType } from './object';
|
22 | import { StringType } from './string';
|
23 | import { Type } from './type';
|
24 | import { UnionType } from './union';
|
25 | export { Type, StringType, BooleanType, NumberType, DateType, BufferType, AnyType, ArrayType, UnionType, ModelType, NullType, ObjectType, };
|
26 | export declare const STRING: StringType;
|
27 | export declare const BOOLEAN: BooleanType;
|
28 | export declare const NUMBER: NumberType;
|
29 | export declare const DATE: DateType;
|
30 | export declare const BUFFER: BufferType;
|
31 | export declare const ANY: AnyType;
|
32 | export declare const NULL: NullType;
|