@jin7942/ray
Version:
Lightweight CI/CD deployment tool powered by Docker and Git
21 lines (20 loc) • 547 B
TypeScript
/**
* A brutally simple and sexy classic UNIX-style progress bar.
* [######....] — no BS, no animations, just raw deployment status.
* Designed for CLI tools that mean business.
*
*/
export declare class ProgressBar {
private totalSteps;
private current;
constructor(totalSteps: number);
/**
* Prints the progress for the current step.
* @param stepName - Description of the current step.
*/
step(stepName: string): void;
/**
* Called when all steps are finished.
*/
complete(): void;
}