UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

15 lines (14 loc) 504 B
import { z } from 'zod'; /** * /v2/account/materials definition */ export declare const AccountMaterialsDTO: z.ZodArray<z.ZodObject<{ /** Item id of the material. */ id: z.ZodNumber; /** Material category. Can be resolved against /v2/materials. */ category: z.ZodNumber; /** Binding of the material. Either "Account" or undefined. */ binding: z.ZodOptional<z.ZodLiteral<"Account">>; /** Material count in the account storage. */ count: z.ZodNumber; }, z.core.$strict>>;