mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-22 10:23:56 +00:00
feat: adding initial download sources
This commit is contained in:
@@ -7,7 +7,8 @@ export type DownloadStatus =
|
||||
| "error"
|
||||
| "complete"
|
||||
| "seeding"
|
||||
| "removed";
|
||||
| "removed"
|
||||
| "extracting";
|
||||
|
||||
export interface DownloadProgress {
|
||||
downloadSpeed: number;
|
||||
|
||||
@@ -91,6 +91,7 @@ export interface StartGameDownloadPayload {
|
||||
uri: string;
|
||||
downloadPath: string;
|
||||
downloader: Downloader;
|
||||
automaticallyExtract: boolean;
|
||||
}
|
||||
|
||||
export interface UserFriend {
|
||||
|
||||
@@ -60,6 +60,8 @@ export interface Download {
|
||||
status: DownloadStatus | null;
|
||||
queued: boolean;
|
||||
timestamp: number;
|
||||
extracting: boolean;
|
||||
automaticallyExtract: boolean;
|
||||
}
|
||||
|
||||
export interface GameAchievement {
|
||||
|
||||
Reference in New Issue
Block a user