mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-19 09:13:57 +00:00
feat: adding download queue
This commit is contained in:
@@ -86,6 +86,12 @@ export interface CatalogueEntry {
|
||||
repacks: GameRepack[];
|
||||
}
|
||||
|
||||
export interface DownloadQueue {
|
||||
id: number;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
}
|
||||
|
||||
/* Used by the library */
|
||||
export interface Game {
|
||||
id: number;
|
||||
@@ -104,6 +110,7 @@ export interface Game {
|
||||
fileSize: number;
|
||||
objectID: string;
|
||||
shop: GameShop;
|
||||
downloadQueue: DownloadQueue | null;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user