guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
20 lines (19 loc) • 556 B
TypeScript
import { z } from 'zod';
/**
* /v2/pets definition
*/
export declare const PetsDTO: z.ZodArray<z.ZodObject<{
/** The id of the pet. */
id: z.ZodNumber;
/** The name of the pet. */
name: z.ZodString;
/** The description of the pet. */
description: z.ZodString;
/** The icon uri for the pet. */
icon: z.ZodString;
/** List of skill ids. Can be resolved against /v2/skills. */
skills: z.ZodArray<z.ZodObject<{
/** The id of the skill. */
id: z.ZodNumber;
}, z.core.$strict>>;
}, z.core.$strict>>;