@retroachievements/api
Version:
A well-tested library that lets you get achievement, user, and game data from RetroAchievements.
36 lines (35 loc) • 753 B
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;
}