fix: game session duration calculation

This commit is contained in:
Zamitto 2024-06-20 11:27:09 -03:00
parent b3ca63c62a
commit d347991e0b
5 changed files with 29 additions and 10 deletions

View file

@ -129,7 +129,7 @@ export type LibraryGame = Omit<Game, "repacks">;
export type RunningGameEvent = {
id: number;
sessionStartTimestamp: number;
sessionDurationInMillis: number;
}[];
export interface RunningGame {
@ -138,7 +138,7 @@ export interface RunningGame {
iconUrl: string;
objectID: string;
shop: GameShop;
sessionStartTimestamp: number;
sessionDurationInMillis: number;
}
export interface DownloadProgress {