UNPKG

@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.

44 lines (43 loc) 1.36 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function _export(target, all) { for(var name in all)Object.defineProperty(target, name, { enumerable: true, get: all[name] }); } _export(exports, { MoonrakerType: function() { return MoonrakerType; }, OctoprintType: function() { return OctoprintType; }, PrinterTypesEnum: function() { return PrinterTypesEnum; }, PrusaLinkType: function() { return PrusaLinkType; }, ReprintState: function() { return ReprintState; } }); const OctoprintType = 0; const MoonrakerType = 1; const PrusaLinkType = 2; var PrinterTypesEnum = /*#__PURE__*/ function(PrinterTypesEnum) { PrinterTypesEnum[PrinterTypesEnum["Octoprint"] = 0] = "Octoprint"; PrinterTypesEnum[PrinterTypesEnum["Moonraker"] = 1] = "Moonraker"; PrinterTypesEnum[PrinterTypesEnum["PrusaLink"] = 2] = "PrusaLink"; return PrinterTypesEnum; }({}); var ReprintState = /*#__PURE__*/ function(ReprintState) { ReprintState[ReprintState["PrinterNotAvailable"] = 0] = "PrinterNotAvailable"; ReprintState[ReprintState["NoLastPrint"] = 1] = "NoLastPrint"; ReprintState[ReprintState["LastPrintReady"] = 2] = "LastPrintReady"; return ReprintState; }({}); //# sourceMappingURL=printer-api.interface.js.map