UNPKG

@augment-vir/node

Version:

A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.

12 lines (11 loc) 298 B
/** * Download a file. * * @category Node : File * @category Package : @augment-vir/node * @package [`@augment-vir/node`](https://www.npmjs.com/package/@augment-vir/node) */ export declare function downloadFile({ url, writePath }: { url: string; writePath: string; }): Promise<void>;