UNPKG

@gw2api/types

Version:

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

10 lines (8 loc) 222 B
import type { ItemStack } from './item'; /** * Account Bank. * Required scopes: account, inventories * * @see https://wiki.guildwars2.com/wiki/API:2/account/bank */ export type AccountBank = Array<ItemStack | null>;