@retroachievements/api
Version:
A well-tested library that lets you get achievement, user, and game data from RetroAchievements.
17 lines (16 loc) • 327 B
text/typescript
export interface UserRecentAchievement {
date: string;
hardcoreMode: boolean;
achievementId: number;
title: string;
description: string;
badgeName: string;
points: number;
author: string;
gameTitle: string;
gameIcon: string;
gameId: number;
consoleName: string;
badgeUrl: string;
gameUrl: string;
}