web/DownloadManager: item component & type

This commit is contained in:
wukko
2024-12-17 01:25:02 +06:00
parent 45434ba751
commit 13c4438a57
3 changed files with 254 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
export type QueueItem = {
id: string,
type: "video" | "audio" | "mute" | "image" | "gif",
filename: string,
status: string,
progress: number,
}