From cb9b120093a5ced69bcdc2ed0606aa9d99309af4 Mon Sep 17 00:00:00 2001 From: ItsYeBoi20 Date: Wed, 1 Oct 2025 05:43:03 +0200 Subject: [PATCH] Fix Game type to resolve typecheck errors --- src/types/level.types.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/types/level.types.ts b/src/types/level.types.ts index 567523e6..93925068 100644 --- a/src/types/level.types.ts +++ b/src/types/level.types.ts @@ -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;