UNPKG

@gw2api/types

Version:

TypeScript types for all datastructures used by the Guild Wars 2 API

21 lines (16 loc) 510 B
/** * AchievementGroup as returned from `/v2/achievements/groups` * @see https://wiki.guildwars2.com/wiki/API:2/achievements/groups */ export interface AchievementGroup { /** The id of the achievement group */ id: string; /** The name of the achievement group */ name: string; /** The description of the achievement group */ description: string; /** The order in-game (ascending) */ order: number; /** Achievement category ids that are part of this group */ categories: number[]; };