Files
DefinitelyTyped/types/downloadjs/index.d.ts
Jeffrey Young 1a688277d3 downloadjs types added (#16032)
* downloadjs types added

* downloadjs inline types, remove unnecessary toString
2017-04-20 14:51:11 -07:00

11 lines
384 B
TypeScript

// Type definitions for downloadjs 1.4
// Project: http://danml.com/download.html
// Definitions by: cwmoo740 <https://github.com/cwmoo740>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
declare namespace download {
}
declare function download(data: string | File | Blob, filename?: string, mimeType?: string): void;
export = download;