UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

15 lines (14 loc) 466 B
import { z } from 'zod'; /** * /v2/materials definition. */ export declare const MaterialsDTO: z.ZodArray<z.ZodObject<{ /** The category id. */ id: z.ZodNumber; /** The category name. */ name: z.ZodString; /** The ids of the items in this category. Can be resolved against /v2/items. */ items: z.ZodArray<z.ZodNumber>; /** The order in which the category appears in the material storage. */ order: z.ZodNumber; }, z.core.$strict>>;