mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
470 B
TypeScript
12 lines
470 B
TypeScript
// Type definitions for downloadjs 1.4
|
|
// Project: http://danml.com/download.html
|
|
// Definitions by: cwmoo740 <https://github.com/cwmoo740>
|
|
// josuedevmark <https://github.com/josuedevmark>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
declare namespace download {
|
|
}
|
|
declare function download(data: string | File | Blob, filename?: string, mimeType?: string): XMLHttpRequest | boolean;
|
|
export = download;
|