ts-simple-ast
Version:
TypeScript compiler wrapper for static analysis and code manipulation.
16 lines (15 loc) • 520 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var JSDocTag_1 = require("./JSDocTag");
/**
* JS doc augments tag node.
*/
var JSDocAugmentsTag = /** @class */ (function (_super) {
tslib_1.__extends(JSDocAugmentsTag, _super);
function JSDocAugmentsTag() {
return _super !== null && _super.apply(this, arguments) || this;
}
return JSDocAugmentsTag;
}(JSDocTag_1.JSDocTag));
exports.JSDocAugmentsTag = JSDocAugmentsTag;