UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

17 lines (16 loc) 627 B
import { z } from 'zod'; /** * /v2/wizardsvault definition */ export declare const WizardsVaultDTO: z.ZodObject<{ /** The name of the current season. */ title: z.ZodString; /** The date that the current season begins. */ start: z.ZodString; /** The date that the current season ends. */ end: z.ZodString; /** The wizard's vault listing ids available (use the sub endpoint to view item details). */ listings: z.ZodArray<z.ZodNumber>; /** The wizard's vault objective ids available (use the sub endpoint to view item details). */ objectives: z.ZodArray<z.ZodNumber>; }, z.core.$strict>;