UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

11 lines (10 loc) 396 B
import { z } from 'zod'; /** * /v2/account/legendaryarmory definition */ export declare const AccountLegendaryArmoryDTO: z.ZodArray<z.ZodObject<{ /** The id of the armory items. Can be resolved against /v2/items and /v2/legendaryarmory. */ id: z.ZodNumber; /** The count of that item available for use in a single equipment template. */ count: z.ZodNumber; }, z.core.$strict>>;