naisys
Version:
Node.js Autonomous Intelligence System
9 lines • 427 B
JavaScript
/* To separate enums from services which is useful for mocking where the enum
is used across the code base, but the service it originates from is mocked. */
export var CommandProtection;
(function (CommandProtection) {
CommandProtection["None"] = "none";
CommandProtection["Manual"] = "manual";
CommandProtection["Auto"] = "auto";
})(CommandProtection || (CommandProtection = {}));
//# sourceMappingURL=enums.js.map