@fdm-monster/server
Version:
FDM Monster is a bulk OctoPrint manager to set up, configure and monitor 3D printers. Our aim is to provide extremely optimized websocket performance and reliability.
39 lines (38 loc) • 865 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "TASK_PRESETS", {
enumerable: true,
get: function() {
return TASK_PRESETS;
}
});
class TASK_PRESETS {
static PERIODIC = {
periodic: true,
logFirstCompletion: true,
runImmediately: false
};
static PERIODIC_DISABLED = {
...this.PERIODIC,
runImmediately: true,
disabled: true
};
static PERIODIC_2500MS = {
...this.PERIODIC,
milliseconds: 2500
};
static RUNONCE = {
runOnce: true,
logFirstCompletion: true,
runImmediately: true
};
static RUNDELAYED = {
runDelayed: true,
logFirstCompletion: true,
runImmediately: false,
seconds: 0
};
}
//# sourceMappingURL=task.presets.js.map