guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
11 lines (10 loc) • 306 B
TypeScript
import { z } from 'zod';
/**
* /v2/emblem/* Definition
*/
export declare const EmblemDTO: z.ZodArray<z.ZodObject<{
/** The emblem id. */
id: z.ZodNumber;
/** An array of URLs to images that make up the various parts of the emblem. */
layers: z.ZodArray<z.ZodString>;
}, z.core.$strict>>;