@gw2api/types
Version:
TypeScript types for all datastructures used by the Guild Wars 2 API
21 lines (16 loc) • 329 B
text/typescript
import type { DyeSlot } from './skin';
/**
* Outfits (/v2/skiffs).
*
* @see https://wiki.guildwars2.com/wiki/API:2/skiffs
*/
export interface Skiff {
/** The skiff id */
id: number,
/** The skiff name */
name: string;
/** The skiff icon */
icon: string;
/** Available dye slots */
dye_slots: DyeSlot[];
}