@retroachievements/api
Version:
A well-tested library that lets you get achievement, user, and game data from RetroAchievements.
21 lines (19 loc) • 430 B
text/typescript
import type { AchievementType } from "../../achievement";
export type DatedUserAchievement = {
date: string;
hardcoreMode: boolean;
achievementId: number;
title: string;
description: string;
badgeName: string;
points: number;
author: string;
gameTitle: string;
gameIcon: string;
gameId: number;
consoleName: string;
cumulScore: number;
badgeUrl: string;
gameUrl: string;
type: AchievementType;
};