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.

5 lines (4 loc) 180 B
export default abstract class BaseDownloadEngineWriteStream { abstract write(cursor: number, buffers: Uint8Array[]): Promise<void> | void; close(): void | Promise<void>; }