guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
21 lines (20 loc) • 668 B
TypeScript
import { z } from 'zod';
/**
* /v2/account/achievements definition
*/
export declare const AccountAchievementsDTO: z.ZodArray<z.ZodObject<{
/** Achievement id. */
id: z.ZodNumber;
/** Achievement bits. */
bits: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
/** Current achievement point count. */
current: z.ZodNumber;
/** Maximum achievement point count. */
max: z.ZodOptional<z.ZodNumber>;
/** Achievement completion status. */
done: z.ZodBoolean;
/** Achievement repeatability. */
repeated: z.ZodOptional<z.ZodNumber>;
/** Achievement unlock status. */
unlocked: z.ZodOptional<z.ZodBoolean>;
}, z.core.$strict>>;