pandora
Version:
37 lines • 965 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class ProcessRepresentationChainModifier {
constructor(representation) {
this.representation = representation;
}
name(name) {
this.representation.processName = name;
return this;
}
entry(entry) {
this.representation.entryFile = entry;
return this;
}
scale(scale) {
this.representation.scale = scale;
return this;
}
env(env) {
this.representation.env = env;
return this;
}
mode(mode) {
this.representation.mode = mode;
return this;
}
argv(argv) {
this.representation.argv = argv;
return this;
}
order(order) {
this.representation.order = order;
return this;
}
}
exports.ProcessRepresentationChainModifier = ProcessRepresentationChainModifier;
//# sourceMappingURL=ProcessRepresentationChainModifier.js.map