feat: adding libtorrent again

This commit is contained in:
Chubby Granny Chaser 2024-06-27 14:55:50 +01:00
parent ccd1d18981
commit e44049ff63
No known key found for this signature in database
3 changed files with 11 additions and 85 deletions

View file

@ -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[];