| 83 | } |
| 84 | |
| 85 | export interface DownloadOpts { |
| 86 | filename: string, |
| 87 | content: string, |
| 88 | } |
| 89 | |
| 90 | export function download(opts: DownloadOpts) { |
| 91 | const anchor = document.createElement('a'); |
nothing calls this directly
no outgoing calls
no test coverage detected