mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: refactor
This commit is contained in:
parent
c72eefdb77
commit
780ab5f909
10 changed files with 68 additions and 131 deletions
|
@ -1,4 +1,4 @@
|
|||
import type { DownloadSourceStatus, Downloader } from "@shared";
|
||||
import type { Cracker, DownloadSourceStatus, Downloader } from "@shared";
|
||||
import type { SteamAppDetails } from "./steam.types";
|
||||
|
||||
export type GameStatus =
|
||||
|
@ -265,5 +265,19 @@ export interface UserStats {
|
|||
friendsCount: number;
|
||||
}
|
||||
|
||||
export interface UnlockedAchievement {
|
||||
name: string;
|
||||
unlockTime: number;
|
||||
}
|
||||
|
||||
export interface AchievementFile {
|
||||
type: Cracker;
|
||||
filePath: string;
|
||||
}
|
||||
|
||||
export type GameAchievementFiles = {
|
||||
[id: string]: AchievementFile[];
|
||||
};
|
||||
|
||||
export * from "./steam.types";
|
||||
export * from "./real-debrid.types";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue