guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
11 lines (10 loc) • 307 B
TypeScript
import { z } from 'zod';
/**
* /v2/account/wallet definition
*/
export declare const AccountWalletDTO: z.ZodArray<z.ZodObject<{
/** Id of the currency. Can be resolved against /v2/currencies. */
id: z.ZodNumber;
/** The amount of this currency. */
value: z.ZodNumber;
}, z.core.$strict>>;