UNPKG

6.99 kBJavaScriptView Raw
1"use strict";
2var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3 if (k2 === undefined) k2 = k;
4 Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5}) : (function(o, m, k, k2) {
6 if (k2 === undefined) k2 = k;
7 o[k2] = m[k];
8}));
9var __exportStar = (this && this.__exportStar) || function(m, exports) {
10 for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11};
12Object.defineProperty(exports, "__esModule", { value: true });
13__exportStar(require("./src/Error/BaseError"), exports);
14__exportStar(require("./src/Error/LogicError"), exports);
15__exportStar(require("./src/Error/DiagnosticError"), exports);
16__exportStar(require("./src/Error/NoRootTypeError"), exports);
17__exportStar(require("./src/Error/UnknownNodeError"), exports);
18__exportStar(require("./src/Error/UnknownTypeError"), exports);
19__exportStar(require("./src/Config"), exports);
20__exportStar(require("./src/Utils/StringMap"), exports);
21__exportStar(require("./src/Utils/uniqueArray"), exports);
22__exportStar(require("./src/Utils/formatError"), exports);
23__exportStar(require("./src/Utils/derefType"), exports);
24__exportStar(require("./src/Utils/symbolAtNode"), exports);
25__exportStar(require("./src/Schema/Definition"), exports);
26__exportStar(require("./src/Schema/Schema"), exports);
27__exportStar(require("./src/Type/BaseType"), exports);
28__exportStar(require("./src/Type/AnyType"), exports);
29__exportStar(require("./src/Type/NullType"), exports);
30__exportStar(require("./src/Type/UndefinedType"), exports);
31__exportStar(require("./src/Type/PrimitiveType"), exports);
32__exportStar(require("./src/Type/BooleanType"), exports);
33__exportStar(require("./src/Type/NumberType"), exports);
34__exportStar(require("./src/Type/StringType"), exports);
35__exportStar(require("./src/Type/LiteralType"), exports);
36__exportStar(require("./src/Type/ArrayType"), exports);
37__exportStar(require("./src/Type/UnionType"), exports);
38__exportStar(require("./src/Type/IntersectionType"), exports);
39__exportStar(require("./src/Type/TupleType"), exports);
40__exportStar(require("./src/Type/ObjectType"), exports);
41__exportStar(require("./src/Type/EnumType"), exports);
42__exportStar(require("./src/Type/AliasType"), exports);
43__exportStar(require("./src/Type/ReferenceType"), exports);
44__exportStar(require("./src/Type/DefinitionType"), exports);
45__exportStar(require("./src/Type/AnnotatedType"), exports);
46__exportStar(require("./src/AnnotationsReader"), exports);
47__exportStar(require("./src/AnnotationsReader/BasicAnnotationsReader"), exports);
48__exportStar(require("./src/AnnotationsReader/ExtendedAnnotationsReader"), exports);
49__exportStar(require("./src/TypeFormatter"), exports);
50__exportStar(require("./src/SubTypeFormatter"), exports);
51__exportStar(require("./src/ChainTypeFormatter"), exports);
52__exportStar(require("./src/CircularReferenceTypeFormatter"), exports);
53__exportStar(require("./src/TypeFormatter/AnyTypeFormatter"), exports);
54__exportStar(require("./src/TypeFormatter/UnknownTypeFormatter"), exports);
55__exportStar(require("./src/TypeFormatter/NullTypeFormatter"), exports);
56__exportStar(require("./src/TypeFormatter/UndefinedTypeFormatter"), exports);
57__exportStar(require("./src/TypeFormatter/BooleanTypeFormatter"), exports);
58__exportStar(require("./src/TypeFormatter/NumberTypeFormatter"), exports);
59__exportStar(require("./src/TypeFormatter/StringTypeFormatter"), exports);
60__exportStar(require("./src/TypeFormatter/LiteralTypeFormatter"), exports);
61__exportStar(require("./src/TypeFormatter/ArrayTypeFormatter"), exports);
62__exportStar(require("./src/TypeFormatter/TupleTypeFormatter"), exports);
63__exportStar(require("./src/TypeFormatter/UnionTypeFormatter"), exports);
64__exportStar(require("./src/TypeFormatter/IntersectionTypeFormatter"), exports);
65__exportStar(require("./src/TypeFormatter/ObjectTypeFormatter"), exports);
66__exportStar(require("./src/TypeFormatter/EnumTypeFormatter"), exports);
67__exportStar(require("./src/TypeFormatter/AliasTypeFormatter"), exports);
68__exportStar(require("./src/TypeFormatter/ReferenceTypeFormatter"), exports);
69__exportStar(require("./src/TypeFormatter/DefinitionTypeFormatter"), exports);
70__exportStar(require("./src/TypeFormatter/PrimitiveUnionTypeFormatter"), exports);
71__exportStar(require("./src/TypeFormatter/LiteralUnionTypeFormatter"), exports);
72__exportStar(require("./src/TypeFormatter/AnnotatedTypeFormatter"), exports);
73__exportStar(require("./src/NodeParser"), exports);
74__exportStar(require("./src/SubNodeParser"), exports);
75__exportStar(require("./src/ChainNodeParser"), exports);
76__exportStar(require("./src/ExposeNodeParser"), exports);
77__exportStar(require("./src/TopRefNodeParser"), exports);
78__exportStar(require("./src/CircularReferenceNodeParser"), exports);
79__exportStar(require("./src/NodeParser/AnyTypeNodeParser"), exports);
80__exportStar(require("./src/NodeParser/UnknownTypeNodeParser"), exports);
81__exportStar(require("./src/NodeParser/LiteralNodeParser"), exports);
82__exportStar(require("./src/NodeParser/NullLiteralNodeParser"), exports);
83__exportStar(require("./src/NodeParser/UndefinedTypeNodeParser"), exports);
84__exportStar(require("./src/NodeParser/NeverTypeNodeParser"), exports);
85__exportStar(require("./src/NodeParser/NumberLiteralNodeParser"), exports);
86__exportStar(require("./src/NodeParser/StringLiteralNodeParser"), exports);
87__exportStar(require("./src/NodeParser/BooleanLiteralNodeParser"), exports);
88__exportStar(require("./src/NodeParser/BooleanTypeNodeParser"), exports);
89__exportStar(require("./src/NodeParser/NumberTypeNodeParser"), exports);
90__exportStar(require("./src/NodeParser/StringTypeNodeParser"), exports);
91__exportStar(require("./src/NodeParser/EnumNodeParser"), exports);
92__exportStar(require("./src/NodeParser/ExpressionWithTypeArgumentsNodeParser"), exports);
93__exportStar(require("./src/NodeParser/InterfaceAndClassNodeParser"), exports);
94__exportStar(require("./src/NodeParser/ParenthesizedNodeParser"), exports);
95__exportStar(require("./src/NodeParser/TypeAliasNodeParser"), exports);
96__exportStar(require("./src/NodeParser/TypeLiteralNodeParser"), exports);
97__exportStar(require("./src/NodeParser/TypeReferenceNodeParser"), exports);
98__exportStar(require("./src/NodeParser/ArrayNodeParser"), exports);
99__exportStar(require("./src/NodeParser/IntersectionNodeParser"), exports);
100__exportStar(require("./src/NodeParser/UnionNodeParser"), exports);
101__exportStar(require("./src/NodeParser/TupleNodeParser"), exports);
102__exportStar(require("./src/NodeParser/AnnotatedNodeParser"), exports);
103__exportStar(require("./src/NodeParser/CallExpressionParser"), exports);
104__exportStar(require("./src/NodeParser/ConditionalTypeNodeParser"), exports);
105__exportStar(require("./src/NodeParser/PrefixUnaryExpressionNodeParser"), exports);
106__exportStar(require("./src/SchemaGenerator"), exports);
107__exportStar(require("./factory"), exports);
108//# sourceMappingURL=index.js.map
\No newline at end of file