@retroachievements/api
Version:
A well-tested library that lets you get achievement, user, and game data from RetroAchievements.
31 lines (27 loc) • 621 B
text/typescript
export interface GetAchievementOfTheWeekResponse {
Achievement: {
ID: string;
Title: string;
Description: string;
Points: string;
TrueRatio: string;
Author: string;
DateCreated: string;
DateModified: string;
BadgeName: string;
BadgeURL: string;
};
Console: { ID: string; Title: string };
ForumTopic: { ID: string };
Game: { ID: string; Title: string };
StartAt: string;
TotalPlayers: string;
Unlocks: Array<{
User: string;
RAPoints: string;
RASoftcorePoints: string;
DateAwarded: string;
HardcoreMode: string;
}>;
UnlocksCount: string;
}