UNPKG

ts-json-schema-generator

Version:

Generate JSON schema from your Typescript sources

108 lines 6.97 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); __exportStar(require("./src/Error/BaseError"), exports); __exportStar(require("./src/Error/LogicError"), exports); __exportStar(require("./src/Error/DiagnosticError"), exports); __exportStar(require("./src/Error/NoRootTypeError"), exports); __exportStar(require("./src/Error/UnknownNodeError"), exports); __exportStar(require("./src/Error/UnknownTypeError"), exports); __exportStar(require("./src/Config"), exports); __exportStar(require("./src/Utils/StringMap"), exports); __exportStar(require("./src/Utils/uniqueArray"), exports); __exportStar(require("./src/Utils/formatError"), exports); __exportStar(require("./src/Utils/derefType"), exports); __exportStar(require("./src/Utils/symbolAtNode"), exports); __exportStar(require("./src/Schema/Definition"), exports); __exportStar(require("./src/Schema/Schema"), exports); __exportStar(require("./src/Type/BaseType"), exports); __exportStar(require("./src/Type/AnyType"), exports); __exportStar(require("./src/Type/NullType"), exports); __exportStar(require("./src/Type/UndefinedType"), exports); __exportStar(require("./src/Type/PrimitiveType"), exports); __exportStar(require("./src/Type/BooleanType"), exports); __exportStar(require("./src/Type/NumberType"), exports); __exportStar(require("./src/Type/StringType"), exports); __exportStar(require("./src/Type/LiteralType"), exports); __exportStar(require("./src/Type/ArrayType"), exports); __exportStar(require("./src/Type/UnionType"), exports); __exportStar(require("./src/Type/IntersectionType"), exports); __exportStar(require("./src/Type/TupleType"), exports); __exportStar(require("./src/Type/ObjectType"), exports); __exportStar(require("./src/Type/EnumType"), exports); __exportStar(require("./src/Type/AliasType"), exports); __exportStar(require("./src/Type/ReferenceType"), exports); __exportStar(require("./src/Type/DefinitionType"), exports); __exportStar(require("./src/Type/AnnotatedType"), exports); __exportStar(require("./src/AnnotationsReader"), exports); __exportStar(require("./src/AnnotationsReader/BasicAnnotationsReader"), exports); __exportStar(require("./src/AnnotationsReader/ExtendedAnnotationsReader"), exports); __exportStar(require("./src/TypeFormatter"), exports); __exportStar(require("./src/SubTypeFormatter"), exports); __exportStar(require("./src/ChainTypeFormatter"), exports); __exportStar(require("./src/CircularReferenceTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/AnyTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/UnknownTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/NullTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/UndefinedTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/BooleanTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/NumberTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/StringTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/LiteralTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/ArrayTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/TupleTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/UnionTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/IntersectionTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/ObjectTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/EnumTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/AliasTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/ReferenceTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/DefinitionTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/PrimitiveUnionTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/LiteralUnionTypeFormatter"), exports); __exportStar(require("./src/TypeFormatter/AnnotatedTypeFormatter"), exports); __exportStar(require("./src/NodeParser"), exports); __exportStar(require("./src/SubNodeParser"), exports); __exportStar(require("./src/ChainNodeParser"), exports); __exportStar(require("./src/ExposeNodeParser"), exports); __exportStar(require("./src/TopRefNodeParser"), exports); __exportStar(require("./src/CircularReferenceNodeParser"), exports); __exportStar(require("./src/NodeParser/AnyTypeNodeParser"), exports); __exportStar(require("./src/NodeParser/UnknownTypeNodeParser"), exports); __exportStar(require("./src/NodeParser/LiteralNodeParser"), exports); __exportStar(require("./src/NodeParser/NullLiteralNodeParser"), exports); __exportStar(require("./src/NodeParser/UndefinedTypeNodeParser"), exports); __exportStar(require("./src/NodeParser/NeverTypeNodeParser"), exports); __exportStar(require("./src/NodeParser/NumberLiteralNodeParser"), exports); __exportStar(require("./src/NodeParser/StringLiteralNodeParser"), exports); __exportStar(require("./src/NodeParser/BooleanLiteralNodeParser"), exports); __exportStar(require("./src/NodeParser/BooleanTypeNodeParser"), exports); __exportStar(require("./src/NodeParser/NumberTypeNodeParser"), exports); __exportStar(require("./src/NodeParser/StringTypeNodeParser"), exports); __exportStar(require("./src/NodeParser/EnumNodeParser"), exports); __exportStar(require("./src/NodeParser/ExpressionWithTypeArgumentsNodeParser"), exports); __exportStar(require("./src/NodeParser/InterfaceAndClassNodeParser"), exports); __exportStar(require("./src/NodeParser/ParenthesizedNodeParser"), exports); __exportStar(require("./src/NodeParser/TypeAliasNodeParser"), exports); __exportStar(require("./src/NodeParser/TypeLiteralNodeParser"), exports); __exportStar(require("./src/NodeParser/TypeReferenceNodeParser"), exports); __exportStar(require("./src/NodeParser/ArrayNodeParser"), exports); __exportStar(require("./src/NodeParser/IntersectionNodeParser"), exports); __exportStar(require("./src/NodeParser/UnionNodeParser"), exports); __exportStar(require("./src/NodeParser/TupleNodeParser"), exports); __exportStar(require("./src/NodeParser/AnnotatedNodeParser"), exports); __exportStar(require("./src/NodeParser/CallExpressionParser"), exports); __exportStar(require("./src/NodeParser/ConditionalTypeNodeParser"), exports); __exportStar(require("./src/NodeParser/PrefixUnaryExpressionNodeParser"), exports); __exportStar(require("./src/SchemaGenerator"), exports); __exportStar(require("./factory"), exports); //# sourceMappingURL=index.js.map