guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
19 lines (18 loc) • 519 B
TypeScript
import { z } from 'zod';
/**
* /v2/dungeons definition
*/
export declare const DungeonsDTO: z.ZodArray<z.ZodObject<{
/** The name of the dungeon.*/
id: z.ZodString;
/** The paths in the dungeon. */
paths: z.ZodArray<z.ZodObject<{
/** The given name for the dungeon path. */
id: z.ZodString;
/** The type of the chosen path. */
type: z.ZodEnum<{
Story: "Story";
Explorable: "Explorable";
}>;
}, z.core.$strict>>;
}, z.core.$strict>>;