Fix Game type to resolve typecheck errors

This commit is contained in:
ItsYeBoi20
2025-10-01 05:43:03 +02:00
parent aacf9abc6a
commit cb9b120093

View File

@@ -33,6 +33,17 @@ export interface User {
export interface Game {
title: string;
iconUrl: string | null;
libraryHeroImageUrl: string | null;
logoImageUrl: string | null;
customIconUrl?: string | null;
customLogoImageUrl?: string | null;
customHeroImageUrl?: string | null;
originalIconPath?: string | null;
originalLogoPath?: string | null;
originalHeroPath?: string | null;
customOriginalIconPath?: string | null;
customOriginalLogoPath?: string | null;
customOriginalHeroPath?: string | null;
playTimeInMilliseconds: number;
unsyncedDeltaPlayTimeInMilliseconds?: number;
lastTimePlayed: Date | null;