ngrx-uml
Version:
NGRX to Plant UML diagram
25 lines (24 loc) • 625 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.NgModule = void 0;
const type_kind_enum_1 = require("../type-kind.enum");
class NgModule {
constructor(name, filePath, pos, end) {
this.name = name;
this.filePath = filePath;
this.pos = pos;
this.end = end;
this.kind = type_kind_enum_1.TypeKind.NgModule;
this.kindText = 'NgModule';
}
getChildren() {
return [];
}
setName(name) {
this.name = name;
}
getExportName() {
return this.name || this.kindText;
}
}
exports.NgModule = NgModule;
;