feat: update interfaces

This commit is contained in:
Zamitto 2024-12-17 16:13:28 -03:00
parent ce2cf89fd6
commit ac0d0efe0f

View File

@ -41,6 +41,7 @@ export interface UserAchievement {
name: string;
hidden: boolean;
displayName: string;
points?: number;
description?: string;
unlocked: boolean;
unlockTime: number | null;
@ -322,6 +323,7 @@ export interface TrendingGame {
export interface UserStats {
libraryCount: number;
friendsCount: number;
achievementsPointsEarnedSum?: number;
}
export interface UnlockedAchievement {