forked from vinejs/vine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
36 lines (33 loc) · 1.49 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* @vinejs/vine
*
* (c) VineJS
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import { Vine } from './src/vine/main.js'
export { Vine }
export * as symbols from './src/symbols.js'
export * as errors from './src/errors/main.js'
export { VineAny } from './src/schema/any/main.js'
export { VineEnum } from './src/schema/enum/main.js'
export { VineNativeEnum } from './src/schema/enum/native_enum.js'
export { VineTuple } from './src/schema/tuple/main.js'
export { VineUnion } from './src/schema/union/main.js'
export { VineArray } from './src/schema/array/main.js'
export { VineValidator } from './src/vine/validator.js'
export { VineString } from './src/schema/string/main.js'
export { VineNumber } from './src/schema/number/main.js'
export { VineDate } from './src/schema/date/main.js'
export { VineRecord } from './src/schema/record/main.js'
export { VineObject } from './src/schema/object/main.js'
export { VineLiteral } from './src/schema/literal/main.js'
export { VineBoolean } from './src/schema/boolean/main.js'
export { VineAccepted } from './src/schema/accepted/main.js'
export { BaseLiteralType } from './src/schema/base/literal.js'
export { BaseType, BaseModifiersType } from './src/schema/base/main.js'
export { SimpleErrorReporter } from './src/reporters/simple_error_reporter.js'
export { SimpleMessagesProvider } from './src/messages_provider/simple_messages_provider.js'
const vine = new Vine()
export default vine