ts-bakery
Version:
Baked dependency injection for Typescript.
20 lines • 526 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const TsNode_1 = require("./TsNode");
class TsFile extends TsNode_1.default {
constructor() {
super(...arguments);
this.imports = [];
this.typeAliases = [];
this.enums = [];
this.interfaces = [];
this.classes = [];
this.functions = [];
this.exportedNames = [];
}
getFilePath() {
return this.path;
}
}
exports.default = TsFile;
//# sourceMappingURL=TsFile.js.map