mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: adding libtorrent again
This commit is contained in:
parent
ccd1d18981
commit
e44049ff63
3 changed files with 11 additions and 85 deletions
|
@ -1,6 +1,13 @@
|
|||
import type { Aria2Status } from "aria2";
|
||||
import type { DownloadSourceStatus, Downloader } from "@shared";
|
||||
|
||||
export type GameStatus =
|
||||
| "active"
|
||||
| "waiting"
|
||||
| "paused"
|
||||
| "error"
|
||||
| "complete"
|
||||
| "removed";
|
||||
|
||||
export type GameShop = "steam" | "epic";
|
||||
|
||||
export interface SteamGenre {
|
||||
|
@ -106,7 +113,7 @@ export interface Game {
|
|||
id: number;
|
||||
title: string;
|
||||
iconUrl: string;
|
||||
status: Aria2Status | null;
|
||||
status: GameStatus | null;
|
||||
folderName: string;
|
||||
downloadPath: string | null;
|
||||
repacks: GameRepack[];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue