| 2 | import { HfModelFileItem } from './HfModelFileItem'; |
| 3 | |
| 4 | interface HfModelFileListProps { |
| 5 | repoId: string; |
| 6 | files: HfModelFile[]; |
| 7 | hardwareInfo: HardwareInfo | null; |
| 8 | onDownload: (filename: string) => void; |
| 9 | downloads: Map<string, HfDownloadProgress>; |
| 10 | installedModels: Model[]; |
| 11 | } |
| 12 | |
| 13 | export function HfModelFileList({ repoId, files, hardwareInfo, onDownload, downloads, installedModels }: HfModelFileListProps) { |
| 14 | if (files.length === 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected