ts-simple-ast
Version:
TypeScript compiler wrapper for static analysis and code manipulation.
15 lines (14 loc) • 742 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var base_1 = require("../base");
var TypeNode_1 = require("./TypeNode");
exports.FunctionOrConstructorTypeNodeBaseBase = base_1.SignaturedDeclaration(TypeNode_1.TypeNode);
var FunctionOrConstructorTypeNodeBase = /** @class */ (function (_super) {
tslib_1.__extends(FunctionOrConstructorTypeNodeBase, _super);
function FunctionOrConstructorTypeNodeBase() {
return _super !== null && _super.apply(this, arguments) || this;
}
return FunctionOrConstructorTypeNodeBase;
}(exports.FunctionOrConstructorTypeNodeBaseBase));
exports.FunctionOrConstructorTypeNodeBase = FunctionOrConstructorTypeNodeBase;