guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
17 lines (16 loc) • 425 B
TypeScript
import { z } from 'zod';
/**
* /v2/currencies definition.
*/
export declare const CurrenciesDTO: z.ZodArray<z.ZodObject<{
/** Currency id. */
id: z.ZodNumber;
/** Currency name. */
name: z.ZodString;
/** Currency description. */
description: z.ZodString;
/** Order of the currency in the list. */
order: z.ZodNumber;
/** Currency icon url. */
icon: z.ZodString;
}, z.core.$strict>>;