mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
// Type definitions for multi-progress 2.0
|
|
// Project: https://github.com/pitaj/multi-progress
|
|
// Definitions by: David Brett <https://github.com/DHBrett>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node"/>
|
|
|
|
import ProgressBar = require('progress');
|
|
import { Stream } from 'stream';
|
|
|
|
export as namespace MultiProgress;
|
|
|
|
export = MultiProgress;
|
|
|
|
declare class MultiProgress {
|
|
/**
|
|
* Create a new @see MultiProgress with the given stream, or stderr by default
|
|
* @param stream A stream to write the progress bars to
|
|
*/
|
|
constructor(stream?: Stream)
|
|
|
|
/**
|
|
* Add a new bar
|
|
*/
|
|
newBar: (format: string, options: ProgressBar.ProgressBarOptions) => ProgressBar;
|
|
|
|
/**
|
|
* Close all bars
|
|
*/
|
|
terminate: () => void;
|
|
|
|
/**
|
|
* Render the given progress bar
|
|
*/
|
|
move: (index: number) => void;
|
|
|
|
/**
|
|
* Move the bar indicated by index forward the number of steps indicated by value
|
|
*/
|
|
tick: (index: number, value: number, options?: any) => void;
|
|
|
|
/**
|
|
* Update the bar indicated by index to the value given
|
|
*/
|
|
update: (index: number, value: number, options?: any) => void;
|
|
}
|
|
|
|
declare namespace MultiProgress {}
|