mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-29 05:41:03 +00:00
Fix Game type to resolve typecheck errors
This commit is contained in:
@@ -33,6 +33,17 @@ export interface User {
|
|||||||
export interface Game {
|
export interface Game {
|
||||||
title: string;
|
title: string;
|
||||||
iconUrl: string | null;
|
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;
|
playTimeInMilliseconds: number;
|
||||||
unsyncedDeltaPlayTimeInMilliseconds?: number;
|
unsyncedDeltaPlayTimeInMilliseconds?: number;
|
||||||
lastTimePlayed: Date | null;
|
lastTimePlayed: Date | null;
|
||||||
|
|||||||
Reference in New Issue
Block a user