guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
18 lines (17 loc) • 481 B
TypeScript
import { z } from 'zod';
/**
* /v2/homestead/glyphs definition
*/
export declare const HomesteadGlyphsDTO: z.ZodArray<z.ZodObject<{
/** The homestead glyph id. */
id: z.ZodString;
/** The id of the glyph item.
* Can be compared to the /v2/items endpoint. */
item_id: z.ZodNumber;
/** The slot it is attached to. */
slot: z.ZodEnum<{
harvesting: "harvesting";
mining: "mining";
logging: "logging";
}>;
}, z.core.$strict>>;