guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
13 lines (12 loc) • 351 B
TypeScript
import { z } from 'zod';
/**
* /v2/wvw/ranks definition
*/
export declare const WvWRanksDTO: z.ZodArray<z.ZodObject<{
/** The id of the rank. */
id: z.ZodNumber;
/** The given title for the WvW rank. */
title: z.ZodString;
/** The minimum WvW level required to be at this rank. */
min_rank: z.ZodNumber;
}, z.core.$strict>>;