@gw2api/types
Version:
TypeScript types for all datastructures used by the Guild Wars 2 API
14 lines (12 loc) • 302 B
text/typescript
/**
* Accounts legendary armory.
* Required scopes: account, unlocks, inventories
*
* @see https://wiki.guildwars2.com/wiki/API:2/account/legendaryarmory
*/
export interface AccountLegendaryarmory {
/** The item id */
id: number,
/** The amount of this item available */
count: number,
}