ts-simple-ast
Version:
TypeScript compiler wrapper for static analysis and code manipulation.
13 lines (12 loc) • 598 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var FunctionOrConstructorTypeNodeBase_1 = require("./FunctionOrConstructorTypeNodeBase");
var ConstructorTypeNode = /** @class */ (function (_super) {
tslib_1.__extends(ConstructorTypeNode, _super);
function ConstructorTypeNode() {
return _super !== null && _super.apply(this, arguments) || this;
}
return ConstructorTypeNode;
}(FunctionOrConstructorTypeNodeBase_1.FunctionOrConstructorTypeNodeBase));
exports.ConstructorTypeNode = ConstructorTypeNode;