rhamt-core
Version:
18 lines • 453 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class RhamtModel {
constructor() {
this.configurations = new Map();
}
getConfigurations() {
return Array.from(this.configurations.values());
}
}
exports.RhamtModel = RhamtModel;
class RhamtConfiguration {
constructor(id = '') {
this.id = id;
}
}
exports.RhamtConfiguration = RhamtConfiguration;
//# sourceMappingURL=model.js.map