guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
26 lines (25 loc) • 920 B
TypeScript
import { z } from 'zod';
/**
* /v2/pvp/amulets definition.
*/
export declare const PvPAmuletsDTO: z.ZodArray<z.ZodObject<{
/** The id of the amulet. */
id: z.ZodNumber;
/** The name of the amulet. */
name: z.ZodString;
/** The icon uri for the amulet. */
icon: z.ZodString;
/** The list of stats provided by this PvP amulet. */
attributes: z.ZodObject<{
AgonyResistance: z.ZodOptional<z.ZodNumber>;
BoonDuration: z.ZodOptional<z.ZodNumber>;
ConditionDamage: z.ZodOptional<z.ZodNumber>;
ConditionDuration: z.ZodOptional<z.ZodNumber>;
CritDamage: z.ZodOptional<z.ZodNumber>;
Healing: z.ZodOptional<z.ZodNumber>;
Power: z.ZodOptional<z.ZodNumber>;
Precision: z.ZodOptional<z.ZodNumber>;
Toughness: z.ZodOptional<z.ZodNumber>;
Vitality: z.ZodOptional<z.ZodNumber>;
}, z.core.$strict>;
}, z.core.$strict>>;