feat: display upload speed during seeding

This commit is contained in:
Hachi-R
2024-11-09 12:45:48 -03:00
parent 8ec52bf193
commit 56687948bf
6 changed files with 54 additions and 7 deletions

View File

@@ -10,6 +10,7 @@ import type {
ShopDetails,
Steam250Game,
DownloadProgress,
SeedingStatus,
UserPreferences,
StartGameDownloadPayload,
RealDebridUser,
@@ -51,6 +52,9 @@ declare global {
onDownloadProgress: (
cb: (value: DownloadProgress) => void
) => () => Electron.IpcRenderer;
onSeedingStatus: (
cb: (value: SeedingStatus[]) => void
) => () => Electron.IpcRenderer;
/* Catalogue */
searchGames: (query: string) => Promise<CatalogueEntry[]>;