guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
24 lines (23 loc) • 875 B
TypeScript
import { z } from 'zod';
/**
* /v2/account/wizardsvault/special definition
*/
export declare const AccountWizardsVaultSpecialDTO: z.ZodObject<{
/** An array of objects detailing each weekly objective */
objectives: 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.ZodString;
/** The astral acclaim awarded for the objective. */
acclaim: z.ZodNumber;
/** The current progress of the objective. */
progress_current: z.ZodNumber;
/** The progress status of the objective. */
progress_complete: z.ZodNumber;
/** The claim status of the objective. */
claimed: z.ZodBoolean;
}, z.core.$strict>>;
}, z.core.$strict>;