@trophyso/node
Version:
NodeJS SDK for the Trophy API
8 lines (7 loc) • 321 B
TypeScript
import type * as TrophyApi from "../index";
export interface AchievementWithStatsResponse extends TrophyApi.AchievementResponse {
/** The number of users who have completed this achievement. */
completions: number;
/** The percentage of all users who have completed this achievement. */
rarity: number;
}