@zowe/imperative
Version:
framework for building configurable CLIs
31 lines • 971 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.TaskProgress = void 0;
/**
* Constants and utilities used in tracking status of a running task
*/
class TaskProgress {
}
exports.TaskProgress = TaskProgress;
TaskProgress.ZERO_PERCENT = 0;
TaskProgress.TEN_PERCENT = 10;
TaskProgress.TWENTY_PERCENT = 20;
TaskProgress.THIRTY_PERCENT = 30;
TaskProgress.FOURTY_PERCENT = 40;
TaskProgress.FIFTY_PERCENT = 50;
TaskProgress.SIXTY_PERCENT = 60;
TaskProgress.SEVENTY_PERCENT = 70;
TaskProgress.EIGHTY_PERCENT = 80;
TaskProgress.NINETY_PERCENT = 90;
TaskProgress.ONE_HUNDRED_PERCENT = 100;
//# sourceMappingURL=TaskProgress.js.map
;