@fdm-monster/server
Version:
FDM Monster is a bulk OctoPrint, Klipper, PrusaLink and BambuLab manager to set up, configure and monitor 3D printers. Our aim is to provide neat overview over your farm.
32 lines (31 loc) • 607 B
JavaScript
//#region src/task.presets.ts
var TASK_PRESETS = class {
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
};
};
//#endregion
export { TASK_PRESETS };
//# sourceMappingURL=task.presets.js.map