mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: get iconUrl
This commit is contained in:
parent
c8fa8f99d2
commit
6b2549ed13
4 changed files with 34 additions and 11 deletions
|
@ -85,6 +85,14 @@ export interface CatalogueEntry {
|
|||
repacks: GameRepack[];
|
||||
}
|
||||
|
||||
export interface ProfileGame {
|
||||
objectID: string;
|
||||
shop: GameShop;
|
||||
title: string;
|
||||
iconUrl;
|
||||
string?;
|
||||
}
|
||||
|
||||
export interface DownloadQueue {
|
||||
id: number;
|
||||
createdAt: Date;
|
||||
|
@ -236,8 +244,8 @@ export interface RealDebridUser {
|
|||
|
||||
export interface UserProfile {
|
||||
username: string;
|
||||
libraryGames: Partial<CatalogueEntry>[];
|
||||
recentGames: Partial<CatalogueEntry>[];
|
||||
libraryGames: ProfileGame[];
|
||||
recentGames: ProfileGame[];
|
||||
}
|
||||
|
||||
export interface DownloadSource {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue