@zowe/imperative
Version:
framework for building configurable CLIs
25 lines • 903 B
JavaScript
/*
* This program and the accompanying materials are made available under the terms of the
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Copyright Contributors to the Zowe Project.
*
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.TaskStage = void 0;
/**
* Describes the current stage/status of a task in your CLI
* Used in operation infrastructure and for progress bars
*/
var TaskStage;
(function (TaskStage) {
TaskStage[TaskStage["IN_PROGRESS"] = 0] = "IN_PROGRESS";
TaskStage[TaskStage["COMPLETE"] = 1] = "COMPLETE";
TaskStage[TaskStage["NOT_STARTED"] = 2] = "NOT_STARTED";
TaskStage[TaskStage["FAILED"] = 3] = "FAILED";
})(TaskStage || (exports.TaskStage = TaskStage = {}));
//# sourceMappingURL=TaskStage.js.map
;