UNPKG

@retroachievements/api

Version:

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

22 lines (20 loc) 454 B
import type { AchievementType } from "../../achievement"; export interface UserRecentAchievement { date: string; hardcoreMode: boolean; achievementId: number; title: string; description: string; badgeName: string; points: number; trueRatio: number; type: AchievementType; author: string; authorUlid: string; gameTitle: string; gameIcon: string; gameId: number; consoleName: string; badgeUrl: string; gameUrl: string; }