feat(download ui): debug queue interface

This commit is contained in:
DecDuck
2024-12-09 17:03:48 +11:00
parent ff39f1ca39
commit 3d8639136b
16 changed files with 148 additions and 257 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, progress: number }>;
queue: Array<{ id: string; status: string, progress: number | null }>;
};
export const useQueueState = () =>