UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

11 lines (10 loc) 283 B
import { z } from 'zod'; /** * /v2/guild/:id/storage definition */ export declare const GuildStorageDTO: z.ZodArray<z.ZodObject<{ /** The id of the consumable. */ id: z.ZodNumber; /** Amount of the consumable in storage. */ count: z.ZodNumber; }, z.core.$strict>>;