pdmq
Version:
11 lines (10 loc) • 513 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WorkflowExecutionStatus = void 0;
var WorkflowExecutionStatus;
(function (WorkflowExecutionStatus) {
WorkflowExecutionStatus["RUNNING"] = "Running";
WorkflowExecutionStatus["NEVER_RAN"] = "Never Ran";
WorkflowExecutionStatus["COMPLETED"] = "Completed";
WorkflowExecutionStatus["TERMINATED"] = "Terminated";
})(WorkflowExecutionStatus = exports.WorkflowExecutionStatus || (exports.WorkflowExecutionStatus = {}));