-
Notifications
You must be signed in to change notification settings - Fork 195
/
index.ts
158 lines (147 loc) · 7.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
export * from "./src/Error/BaseError.js";
export * from "./src/Error/Errors.js";
export * from "./src/Config.js";
export * from "./src/Utils/allOfDefinition.js";
export * from "./src/Utils/deepMerge.js";
export * from "./src/Utils/derefType.js";
export * from "./src/Utils/extractLiterals.js";
export * from "./src/Utils/hasJsDocTag.js";
export * from "./src/Utils/intersectionOfArrays.js";
export * from "./src/Utils/isAssignableTo.js";
export * from "./src/Utils/isHidden.js";
export * from "./src/Utils/modifiers.js";
export * from "./src/Utils/narrowType.js";
export * from "./src/Utils/nodeKey.js";
export * from "./src/Utils/notNever.js";
export * from "./src/Utils/preserveAnnotation.js";
export * from "./src/Utils/removeUndefined.js";
export * from "./src/Utils/removeUnreachable.js";
export * from "./src/Utils/StringMap.js";
export * from "./src/Utils/String.js";
export * from "./src/Utils/symbolAtNode.js";
export * from "./src/Utils/typeKeys.js";
export * from "./src/Utils/typeName.js";
export * from "./src/Utils/uniqueArray.js";
export * from "./src/Utils/uniqueTypeArray.js";
export * from "./src/Interfaces/AnnotationsReader.js";
export * from "./src/Interfaces/MutableParser.js";
export * from "./src/Schema/Definition.js";
export * from "./src/Schema/Schema.js";
export * from "./src/Type/AliasType.js";
export * from "./src/Type/AnnotatedType.js";
export * from "./src/Type/AnyType.js";
export * from "./src/Type/ArrayType.js";
export * from "./src/Type/BaseType.js";
export * from "./src/Type/BooleanType.js";
export * from "./src/Type/DefinitionType.js";
export * from "./src/Type/EnumType.js";
export * from "./src/Type/FunctionType.js";
export * from "./src/Type/HiddenType.js";
export * from "./src/Type/IntersectionType.js";
export * from "./src/Type/LiteralType.js";
export * from "./src/Type/NeverType.js";
export * from "./src/Type/NullType.js";
export * from "./src/Type/NumberType.js";
export * from "./src/Type/ObjectType.js";
export * from "./src/Type/OptionalType.js";
export * from "./src/Type/PrimitiveType.js";
export * from "./src/Type/ReferenceType.js";
export * from "./src/Type/RestType.js";
export * from "./src/Type/StringType.js";
export * from "./src/Type/SymbolType.js";
export * from "./src/Type/TupleType.js";
export * from "./src/Type/UndefinedType.js";
export * from "./src/Type/UnionType.js";
export * from "./src/Type/UnknownType.js";
export * from "./src/Type/VoidType.js";
export * from "./src/AnnotationsReader/BasicAnnotationsReader.js";
export * from "./src/AnnotationsReader/ExtendedAnnotationsReader.js";
export * from "./src/TypeFormatter.js";
export * from "./src/SubTypeFormatter.js";
export * from "./src/ChainTypeFormatter.js";
export * from "./src/MutableTypeFormatter.js";
export * from "./src/CircularReferenceTypeFormatter.js";
export * from "./src/TypeFormatter/AliasTypeFormatter.js";
export * from "./src/TypeFormatter/AnnotatedTypeFormatter.js";
export * from "./src/TypeFormatter/AnyTypeFormatter.js";
export * from "./src/TypeFormatter/ArrayTypeFormatter.js";
export * from "./src/TypeFormatter/BooleanTypeFormatter.js";
export * from "./src/TypeFormatter/DefinitionTypeFormatter.js";
export * from "./src/TypeFormatter/EnumTypeFormatter.js";
export * from "./src/TypeFormatter/HiddenTypeFormatter.js";
export * from "./src/TypeFormatter/IntersectionTypeFormatter.js";
export * from "./src/TypeFormatter/LiteralTypeFormatter.js";
export * from "./src/TypeFormatter/LiteralUnionTypeFormatter.js";
export * from "./src/TypeFormatter/NeverTypeFormatter.js";
export * from "./src/TypeFormatter/NullTypeFormatter.js";
export * from "./src/TypeFormatter/NumberTypeFormatter.js";
export * from "./src/TypeFormatter/ObjectTypeFormatter.js";
export * from "./src/TypeFormatter/OptionalTypeFormatter.js";
export * from "./src/TypeFormatter/PrimitiveUnionTypeFormatter.js";
export * from "./src/TypeFormatter/ReferenceTypeFormatter.js";
export * from "./src/TypeFormatter/RestTypeFormatter.js";
export * from "./src/TypeFormatter/StringTypeFormatter.js";
export * from "./src/TypeFormatter/SymbolTypeFormatter.js";
export * from "./src/TypeFormatter/TupleTypeFormatter.js";
export * from "./src/TypeFormatter/UndefinedTypeFormatter.js";
export * from "./src/TypeFormatter/UnionTypeFormatter.js";
export * from "./src/TypeFormatter/UnknownTypeFormatter.js";
export * from "./src/TypeFormatter/VoidTypeFormatter.js";
export * from "./src/TypeFormatter/FunctionTypeFormatter.js";
export * from "./src/NodeParser.js";
export * from "./src/SubNodeParser.js";
export * from "./src/ChainNodeParser.js";
export * from "./src/ExposeNodeParser.js";
export * from "./src/TopRefNodeParser.js";
export * from "./src/CircularReferenceNodeParser.js";
export * from "./src/NodeParser/AnnotatedNodeParser.js";
export * from "./src/NodeParser/AnyTypeNodeParser.js";
export * from "./src/NodeParser/ArrayLiteralExpressionNodeParser.js";
export * from "./src/NodeParser/ArrayNodeParser.js";
export * from "./src/NodeParser/AsExpressionNodeParser.js";
export * from "./src/NodeParser/BooleanLiteralNodeParser.js";
export * from "./src/NodeParser/BooleanTypeNodeParser.js";
export * from "./src/NodeParser/CallExpressionParser.js";
export * from "./src/NodeParser/ConditionalTypeNodeParser.js";
export * from "./src/NodeParser/EnumNodeParser.js";
export * from "./src/NodeParser/ExpressionWithTypeArgumentsNodeParser.js";
export * from "./src/NodeParser/FunctionNodeParser.js";
export * from "./src/NodeParser/ConstructorNodeParser.js";
export * from "./src/NodeParser/HiddenTypeNodeParser.js";
export * from "./src/NodeParser/IndexedAccessTypeNodeParser.js";
export * from "./src/NodeParser/InterfaceAndClassNodeParser.js";
export * from "./src/NodeParser/IntersectionNodeParser.js";
export * from "./src/NodeParser/IntrinsicNodeParser.js";
export * from "./src/NodeParser/LiteralNodeParser.js";
export * from "./src/NodeParser/MappedTypeNodeParser.js";
export * from "./src/NodeParser/NeverTypeNodeParser.js";
export * from "./src/NodeParser/NullLiteralNodeParser.js";
export * from "./src/NodeParser/NumberLiteralNodeParser.js";
export * from "./src/NodeParser/NumberTypeNodeParser.js";
export * from "./src/NodeParser/ObjectLiteralExpressionNodeParser.js";
export * from "./src/NodeParser/ObjectTypeNodeParser.js";
export * from "./src/NodeParser/OptionalTypeNodeParser.js";
export * from "./src/NodeParser/ParameterParser.js";
export * from "./src/NodeParser/ParenthesizedNodeParser.js";
export * from "./src/NodeParser/PrefixUnaryExpressionNodeParser.js";
export * from "./src/NodeParser/PropertyAccessExpressionParser.js";
export * from "./src/NodeParser/RestTypeNodeParser.js";
export * from "./src/NodeParser/StringLiteralNodeParser.js";
export * from "./src/NodeParser/StringTemplateLiteralNodeParser.js";
export * from "./src/NodeParser/StringTypeNodeParser.js";
export * from "./src/NodeParser/SymbolTypeNodeParser.js";
export * from "./src/NodeParser/TupleNodeParser.js";
export * from "./src/NodeParser/TypeAliasNodeParser.js";
export * from "./src/NodeParser/TypeLiteralNodeParser.js";
export * from "./src/NodeParser/TypeofNodeParser.js";
export * from "./src/NodeParser/TypeOperatorNodeParser.js";
export * from "./src/NodeParser/TypeReferenceNodeParser.js";
export * from "./src/NodeParser/UndefinedLiteralNodeParser.js";
export * from "./src/NodeParser/UndefinedTypeNodeParser.js";
export * from "./src/NodeParser/UnionNodeParser.js";
export * from "./src/NodeParser/UnknownTypeNodeParser.js";
export * from "./src/NodeParser/VoidTypeNodeParser.js";
export * from "./src/SchemaGenerator.js";
export * from "./factory/index.js";
import ts from "typescript";
export { ts };