UNPKG

@retroachievements/api

Version:

A well-tested library that lets you get achievement, user, and game data from RetroAchievements.

17 lines (14 loc) 382 B
import type { AwardKind } from "../../utils/public"; export interface UserCompletionProgressEntity { gameId: number; title: string; imageIcon: string; consoleId: number; consoleName: string; maxPossible: number; numAwarded: number; numAwardedHardcore: number; mostRecentAwardedDate?: string; highestAwardKind?: AwardKind | null; highestAwardDate?: string; }