download.d.ts 132 B

1234567
  1. declare function download(
  2. data: Blob | File | string | any[],
  3. name: string,
  4. type?: string
  5. ): void;
  6. export = download;