| 76 | } |
| 77 | |
| 78 | export interface ZipDownloadFile { |
| 79 | name: string; |
| 80 | path: string; |
| 81 | } |
| 82 | |
| 83 | function triggerBlobDownload(blob: Blob, filename: string): void { |
| 84 | const url = URL.createObjectURL(blob); |
nothing calls this directly
no outgoing calls
no test coverage detected