@gw2api/types
Version:
TypeScript types for all datastructures used by the Guild Wars 2 API
19 lines (15 loc) • 316 B
text/typescript
/**
* Outfits (/v2/outfits).
*
* @see https://wiki.guildwars2.com/wiki/API:2/outfits
*/
export interface Outfit {
/** The outfit id */
id: number,
/** The outfit name */
name: string;
/** The outfit icon */
icon: string;
/** List of item ids unlocking this outfit */
unlock_items: number[];
}