20 lines
455 B
JavaScript
20 lines
455 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
class Component {
|
|
destroy() { }
|
|
constructor(application, serviceConfig) {
|
|
this.application = application;
|
|
this.serviceConfig = serviceConfig;
|
|
}
|
|
label() {
|
|
return "Component";
|
|
}
|
|
services(config) {
|
|
return [];
|
|
}
|
|
routes() {
|
|
return [];
|
|
}
|
|
}
|
|
exports.Component = Component;
|
|
//# sourceMappingURL=Component.js.map
|