UNPKG

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) 405 B
import BaseTransferCliProgressBar from "./base-transfer-cli-progress-bar.js"; /** * A class to display transfer progress in the terminal, with a progress bar and other information. */ export default class FancyTransferCliProgressBar extends BaseTransferCliProgressBar { protected renderProgressLine(): string; protected renderFinishedLine(): string; protected renderPendingLine(): string; }