mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-23 13:39:54 +05:30
14 lines
394 B
TypeScript
14 lines
394 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;
|
|
}
|
|
}
|