UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

19 lines (18 loc) 509 B
import { z } from 'zod'; /** * /v2/wizardsvault/objectives definition */ export declare const WizardsVaultObjectivesDTO: z.ZodArray<z.ZodObject<{ /** The ID of the objective. */ id: z.ZodNumber; /** The title of the objective. */ title: z.ZodString; /** The reward track containing the objective. */ track: z.ZodEnum<{ PvP: "PvP"; WvW: "WvW"; PvE: "PvE"; }>; /** The amount of astral acclaim awarded. */ acclaim: z.ZodNumber; }, z.core.$strict>>;