MCPcopy Create free account
hub / github.com/Icecubesaad/OpenLLM-Studio / DownloadQueueProps

Interface DownloadQueueProps

src/components/DownloadQueue.tsx:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { formatBytes, formatSpeed, formatETA } from '../lib/utils';
3
4interface DownloadQueueProps {
5 downloads: Map<string, HfDownloadProgress>;
6 onPause: (modelName: string) => void;
7 onResume: (modelName: string) => void;
8 onCancel: (modelName: string) => void;
9}
10
11export function DownloadQueue({ downloads, onPause, onResume, onCancel }: DownloadQueueProps) {
12 const downloadArray = Array.from(downloads.values());

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected