mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Add 1. all-the-package-names 2. date-range-array 3. download-file-sync 4. node-wget-promise 5. random 6. stats-lite
7 lines
398 B
TypeScript
7 lines
398 B
TypeScript
// Type definitions for date-range-array 0.1
|
|
// Project: https://github.com/ajhsu/node-wget-promise
|
|
// Definitions by: Nathan Shively-Sanders <https://github.com/sandersn>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
declare function download(source: string, options?: { verbose?: boolean, output?: string, onStart?: any, onProgress?: any}): Promise<void>;
|
|
export = download;
|