UNPKG

@retroachievements/api

Version:

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

15 lines (14 loc) 344 B
import type { AwardKind } from "../../utils/public"; export interface RecentGameAwards { count: number; total: number; results: Array<{ user: string; awardKind: AwardKind; awardDate: string; gameId: number; gameTitle: string; consoleId: number; consoleName: string; }>; }