ipull
Version:
The only file downloader you'll ever need. For node.js and the browser, CLI and library for fast and reliable file downloads.
10 lines (9 loc) • 497 B
TypeScript
import { BaseMultiProgressBar, CLIProgressPrintType } from "./BaseMultiProgressBar.js";
import { FormattedStatus } from "../../format-transfer-status.js";
export declare class SummaryMultiProgressBar extends BaseMultiProgressBar {
readonly printType: CLIProgressPrintType;
readonly updateIntervalMs: number;
private _parallelDownloads;
private _lastStatuses;
createMultiProgressBar(statuses: FormattedStatus[], oneStatus: FormattedStatus, loadingDownloads?: number): string;
}