UNPKG

openrxiv-cli

Version:

CLI tool to download openRxiv MECA files from AWS S3 for text and data mining

13 lines 367 B
export interface DownloadOptions { output?: string; filename?: string; server?: 'biorxiv' | 'medrxiv'; } export interface DownloadProgress { downloaded: number; total: number; speed: number; eta: number; } export declare function downloadFile(path: string, options: DownloadOptions): Promise<void>; //# sourceMappingURL=downloader.d.ts.map