DefinitelyTyped/types/downloadjs/index.d.ts
2018-12-10 11:28:23 -06:00

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;