|
1 | | -import { ArrayTypeHandler } from 'src/handlers/typebox/array-type-handler' |
2 | | -import { BaseTypeHandler } from 'src/handlers/typebox/base-type-handler' |
3 | | -import { FunctionTypeHandler } from 'src/handlers/typebox/function-type-handler' |
4 | | -import { IndexedAccessTypeHandler } from 'src/handlers/typebox/indexed-access-type-handler' |
5 | | -import { InterfaceTypeHandler } from 'src/handlers/typebox/interface-type-handler' |
6 | | -import { IntersectionTypeHandler } from 'src/handlers/typebox/intersection-type-handler' |
7 | | -import { LiteralTypeHandler } from 'src/handlers/typebox/literal-type-handler' |
8 | | -import { ObjectTypeHandler } from 'src/handlers/typebox/object-type-handler' |
9 | | -import { OmitTypeHandler } from 'src/handlers/typebox/omit-type-handler' |
10 | | -import { PartialTypeHandler } from 'src/handlers/typebox/partial-type-handler' |
11 | | -import { PickTypeHandler } from 'src/handlers/typebox/pick-type-handler' |
12 | | -import { RecordTypeHandler } from 'src/handlers/typebox/record-type-handler' |
13 | | -import { RequiredTypeHandler } from 'src/handlers/typebox/required-type-handler' |
14 | | -import { SimpleTypeHandler } from 'src/handlers/typebox/simple-type-handler' |
15 | | -import { TemplateLiteralTypeHandler } from 'src/handlers/typebox/template-literal-type-handler' |
16 | | -import { TupleTypeHandler } from 'src/handlers/typebox/tuple-type-handler' |
17 | | -import { TypeOperatorHandler } from 'src/handlers/typebox/type-operator-handler' |
18 | | -import { TypeQueryHandler } from 'src/handlers/typebox/type-query-handler' |
19 | | -import { TypeReferenceHandler } from 'src/handlers/typebox/type-reference-handler' |
20 | | -import { UnionTypeHandler } from 'src/handlers/typebox/union-type-handler' |
| 1 | +import { ArrayTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/array-type-handler' |
| 2 | +import { BaseTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/base-type-handler' |
| 3 | +import { FunctionTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/function-type-handler' |
| 4 | +import { IndexedAccessTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/indexed-access-type-handler' |
| 5 | +import { InterfaceTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/interface-type-handler' |
| 6 | +import { IntersectionTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/intersection-type-handler' |
| 7 | +import { LiteralTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/literal-type-handler' |
| 8 | +import { ObjectTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/object-type-handler' |
| 9 | +import { OmitTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/omit-type-handler' |
| 10 | +import { PartialTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/partial-type-handler' |
| 11 | +import { PickTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/pick-type-handler' |
| 12 | +import { RecordTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/record-type-handler' |
| 13 | +import { RequiredTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/required-type-handler' |
| 14 | +import { SimpleTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/simple-type-handler' |
| 15 | +import { TemplateLiteralTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/template-literal-type-handler' |
| 16 | +import { TupleTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/tuple-type-handler' |
| 17 | +import { TypeOperatorHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/type-operator-handler' |
| 18 | +import { TypeQueryHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/type-query-handler' |
| 19 | +import { TypeReferenceHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/type-reference-handler' |
| 20 | +import { UnionTypeHandler } from '@daxserver/validation-schema-codegen/handlers/typebox/union-type-handler' |
21 | 21 | import { Node, SyntaxKind, ts } from 'ts-morph' |
22 | 22 |
|
23 | 23 | export class TypeBoxTypeHandlers { |
|
0 commit comments