UNPKG

340 BTypeScriptView Raw
1import { ProgressBar } from "./progress";
2export declare class MultiProgress {
3 private readonly stream;
4 private cursor;
5 private totalLines;
6 private isLogListenerAdded;
7 private barCount;
8 createBar(format: string, options: any): ProgressBar;
9 private allocateLines;
10 private moveCursor;
11 terminate(): void;
12}