UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

21 lines (20 loc) 606 B
import { z } from 'zod'; /** * /v2/wizardsvault/listings definition */ export declare const WizardsVaultListingsDTO: z.ZodArray<z.ZodObject<{ /** The listing id. */ id: z.ZodNumber; /** The id of the item */ item_id: z.ZodNumber; /** The quantity of the item the user receives */ item_count: z.ZodNumber; /** Appears to be the position in the wizards vault UI. */ type: z.ZodEnum<{ Featured: "Featured"; Normal: "Normal"; Legacy: "Legacy"; }>; /** The quantity of Astral Acclaim to purchase . */ cost: z.ZodNumber; }, z.core.$strict>>;