| 4 | import type { DownloadStatus } from '../store/types'; |
| 5 | |
| 6 | interface Props { |
| 7 | download: Accessor<DownloadStatus>; |
| 8 | onActionComplete?: () => void; |
| 9 | } |
| 10 | |
| 11 | const STATUS_LABELS: Record<DownloadStatus['status'], string> = { |
| 12 | downloading: 'Downloading', |
nothing calls this directly
no outgoing calls
no test coverage detected