@methodus/server
Version:
Server components for @methodus workflow
21 lines • 760 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const log_1 = require("../log");
let MethodusClassConfig = class MethodusClassConfig {
constructor(classType, methodType, serverType, resolver) {
this.methodType = "Local";
this.classType = classType;
this.methodType = methodType;
this.serverType = serverType;
this.resolver = () => {
return resolver;
};
}
};
MethodusClassConfig = tslib_1.__decorate([
log_1.LogClass(log_1.logger),
tslib_1.__metadata("design:paramtypes", [Object, String, String, Object])
], MethodusClassConfig);
exports.MethodusClassConfig = MethodusClassConfig;
//# sourceMappingURL=class-config.js.map