UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

11 lines (10 loc) 360 B
import { z } from 'zod'; /** * /v2/commerce/exchange/coins definition */ export declare const CommerceExchangeDTO: z.ZodObject<{ /** The number of coins you required for a single currency unit. */ coins_per_gem: z.ZodNumber; /** The number of gems you get for the specified quantity of currency. */ quantity: z.ZodNumber; }, z.core.$strict>;