guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
13 lines (12 loc) • 396 B
TypeScript
import { z } from 'zod';
/**
* /v2/emotes definition
*/
export declare const EmotesDTO: z.ZodArray<z.ZodObject<{
/** Id of the emote. */
id: z.ZodString;
/** List of all available commands for the emote. */
commands: z.ZodArray<z.ZodString>;
/** List of ids of the items. Can be resolved against /v2/items. */
unlock_items: z.ZodArray<z.ZodNumber>;
}, z.core.$strict>>;