chore: merge with main

This commit is contained in:
Hydra
2024-04-25 05:52:19 +01:00
47 changed files with 1337 additions and 451 deletions

View File

@@ -21,8 +21,8 @@ declare global {
startGameDownload: (
repackId: number,
objectID: string,
title: string,
shop: GameShop
shop: GameShop,
downloadPath: string
) => Promise<Game>;
cancelGameDownload: (gameId: number) => Promise<void>;
pauseGameDownload: (gameId: number) => Promise<void>;
@@ -75,7 +75,7 @@ declare global {
) => Promise<void>;
/* Hardware */
getDiskFreeSpace: () => Promise<DiskSpace>;
getDiskFreeSpace: (path: string) => Promise<DiskSpace>;
/* Misc */
getOrCacheImage: (url: string) => Promise<string>;