guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
13 lines (12 loc) • 343 B
TypeScript
import { z } from 'zod';
/**
* /v2/races definition
*/
export declare const RacesDTO: z.ZodArray<z.ZodObject<{
/** The id of the race. */
id: z.ZodString;
/** Name of the race */
name: z.ZodString;
/** An array of skill ids. Can be resolved against v2/skills. */
skills: z.ZodArray<z.ZodNumber>;
}, z.core.$strict>>;