ts-json-schema-generator
Version:
Generate JSON schema from your Typescript sources
31 lines • 1.03 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnionNodeParser = void 0;
const ts = require("typescript");
const UnionType_1 = require("../Type/UnionType");
const notUndefined_1 = require("../Utils/notUndefined");
class UnionNodeParser {
constructor(typeChecker, childNodeParser) {
this.typeChecker = typeChecker;
this.childNodeParser = childNodeParser;
}
supportsNode(node) {
return node.kind === ts.SyntaxKind.UnionType;
}
createType(node, context) {
const types = node.types
.map((subnode) => {
return this.childNodeParser.createType(subnode, context);
})
.filter(notUndefined_1.notUndefined);
if (types.length === 1) {
return types[0];
}
else if (types.length === 0) {
return undefined;
}
return new UnionType_1.UnionType(types);
}
}
exports.UnionNodeParser = UnionNodeParser;
//# sourceMappingURL=UnionNodeParser.js.map