feat(download widget): download widget and queue fix

This commit is contained in:
DecDuck
2024-12-08 12:33:45 +11:00
parent 57fe5eae05
commit 74f071281e
9 changed files with 85 additions and 45 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { listen } from "@tauri-apps/api/event";
export type QueueState = {
queue: Array<{ id: string; status: string }>;
queue: Array<{ id: string; status: string, progress: number }>;
};
export const useQueueState = () =>