feat: get iconUrl

This commit is contained in:
Zamitto 2024-06-13 00:39:11 -03:00
parent c8fa8f99d2
commit 6b2549ed13
4 changed files with 34 additions and 11 deletions

View file

@ -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 {