13 lines
807 B
TypeScript
13 lines
807 B
TypeScript
import { GridExportExtension } from '../models/gridExport';
|
|
/**
|
|
* I have hesitated to use https://github.com/eligrey/FileSaver.js.
|
|
* If we get bug reports that this project solves, we should consider using it.
|
|
*
|
|
* Related resources.
|
|
* https://blog.logrocket.com/programmatic-file-downloads-in-the-browser-9a5186298d5c/
|
|
* https://github.com/mbrn/filefy/blob/ec4ed0b7415d93be7158c23029f2ea1fa0b8e2d9/src/core/BaseBuilder.ts
|
|
* https://unpkg.com/browse/@progress/kendo-file-saver@1.0.7/dist/es/save-as.js
|
|
* https://github.com/ag-grid/ag-grid/blob/9565c219b6210aa85fa833c929d0728f9d163a91/community-modules/csv-export/src/csvExport/downloader.ts
|
|
*/
|
|
export declare function exportAs<ExtraExtensions extends string>(blob: Blob, extension?: GridExportExtension | ExtraExtensions, filename?: string): void;
|