Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
23 lines
729 B
Plaintext
23 lines
729 B
Plaintext
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = createTSUnionType;
|
|
var _index = require("../generated/index.js");
|
|
var _removeTypeDuplicates = require("../../modifications/typescript/removeTypeDuplicates.js");
|
|
var _index2 = require("../../validators/generated/index.js");
|
|
function createTSUnionType(typeAnnotations) {
|
|
const types = typeAnnotations.map(type => {
|
|
return (0, _index2.isTSTypeAnnotation)(type) ? type.typeAnnotation : type;
|
|
});
|
|
const flattened = (0, _removeTypeDuplicates.default)(types);
|
|
if (flattened.length === 1) {
|
|
return flattened[0];
|
|
} else {
|
|
return (0, _index.tsUnionType)(flattened);
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=createTSUnionType.js.map
|