mirror of
https://gitee.com/sli97/behavior-eden-coco-plugin.git
synced 2025-10-09 16:46:13 +00:00
init
This commit is contained in:
17
dist/runtime/core/enum/index.js
vendored
Normal file
17
dist/runtime/core/enum/index.js
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AbortType = exports.NodeStatus = void 0;
|
||||
var NodeStatus;
|
||||
(function (NodeStatus) {
|
||||
NodeStatus[NodeStatus["Inactive"] = 0] = "Inactive";
|
||||
NodeStatus[NodeStatus["Running"] = 1] = "Running";
|
||||
NodeStatus[NodeStatus["Success"] = 2] = "Success";
|
||||
NodeStatus[NodeStatus["Failure"] = 3] = "Failure";
|
||||
})(NodeStatus = exports.NodeStatus || (exports.NodeStatus = {}));
|
||||
var AbortType;
|
||||
(function (AbortType) {
|
||||
AbortType[AbortType["None"] = 0] = "None";
|
||||
AbortType[AbortType["LowerPriority"] = 1] = "LowerPriority";
|
||||
AbortType[AbortType["Self"] = 2] = "Self";
|
||||
AbortType[AbortType["Both"] = 3] = "Both";
|
||||
})(AbortType = exports.AbortType || (exports.AbortType = {}));
|
Reference in New Issue
Block a user