UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

16 lines (15 loc) 451 B
import { z } from 'zod'; /** * /v2/commerce/delivery definition */ export declare const CommerceDeliveryDTO: z.ZodObject<{ /** Amount of coins ready for pickup */ coins: z.ZodNumber; /** Items ready for pickup */ items: z.ZodArray<z.ZodObject<{ /** The item id. Can be resolved against /v2/items. */ id: z.ZodNumber; /** Item count. */ count: z.ZodNumber; }, z.core.$strict>>; }, z.core.$strict>;