24 lines
708 B
JavaScript
24 lines
708 B
JavaScript
(function (factory) {
|
|
if (typeof module === "object" && typeof module.exports === "object") {
|
|
var v = factory(require, exports);
|
|
if (v !== undefined) module.exports = v;
|
|
}
|
|
else if (typeof define === "function" && define.amd) {
|
|
define(["require", "exports"], factory);
|
|
}
|
|
})(function (require, exports) {
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ExecutionStatusList = void 0;
|
|
exports.ExecutionStatusList = [
|
|
'canceled',
|
|
'crashed',
|
|
'error',
|
|
'new',
|
|
'running',
|
|
'success',
|
|
'unknown',
|
|
'waiting',
|
|
];
|
|
});
|
|
//# sourceMappingURL=execution-status.js.map
|