Feat: Extension of Download Features, Batch Select, Error/Retry (#38)

This commit is contained in:
Youwes09
2026-04-21 10:57:29 -05:00
parent 2d3a4d0e57
commit 86c78689df
9 changed files with 626 additions and 68 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
export interface DownloadQueueItem {
progress: number;
state: "QUEUED" | "DOWNLOADING" | "FINISHED" | "ERROR";
tries: number;
chapter: {
id: number;
name: string;
@@ -17,4 +18,4 @@ export interface DownloadStatus {
export interface Connection<T> {
nodes: T[];
}
}