mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-01-02 18:21:50 +05:30
11 lines
403 B
TypeScript
11 lines
403 B
TypeScript
declare module 'multi-progress' {
|
|
export default class MultiProgress {
|
|
constructor(stream?: string);
|
|
newBar(schema: string, options: ProgressBar.ProgressBarOptions): ProgressBar;
|
|
terminate(): void;
|
|
move(index: number): void;
|
|
tick(index: number, value?: number, options?: any): void;
|
|
update(index: number, value?: number, options?: any): void;
|
|
}
|
|
}
|