UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

22 lines (21 loc) 717 B
import { z } from 'zod'; /** * /v2/wvw/abilities definition */ export declare const WvWAbilitiesDTO: z.ZodArray<z.ZodObject<{ /** The id of the abilities.*/ id: z.ZodNumber; /** The given name for the WvW ability.*/ name: z.ZodString; /** The given description for the WvW ability.*/ description: z.ZodString; /** The uri for the ability's icon.*/ icon: z.ZodString; /** The WvW ranks.*/ ranks: z.ZodArray<z.ZodObject<{ /** The cost in WvW experience points to purchase the ability.*/ cost: z.ZodNumber; /** The effect given to players for obtaining the given ability rank.*/ effect: z.ZodString; }, z.core.$strict>>; }, z.core.$strict>>;