| 4 | import { ExitCode } from '../errors/codes'; |
| 5 | |
| 6 | export interface DownloadOpts { |
| 7 | quiet?: boolean; |
| 8 | retries?: number; |
| 9 | retryDelayMs?: number; |
| 10 | } |
| 11 | |
| 12 | export async function downloadFile( |
| 13 | url: string, |
nothing calls this directly
no outgoing calls
no test coverage detected