UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

15 lines (14 loc) 481 B
import { z } from 'zod'; /** * /v2/stories/seasons definition */ export declare const StoriesSeasonsDTO: z.ZodArray<z.ZodObject<{ /** The id of the season. */ id: z.ZodString; /** The name of the season. */ name: z.ZodString; /** The order in which this season is displayed in the Story Journal. */ order: z.ZodNumber; /** An array of story ids for the stories that belong to this season. */ stories: z.ZodArray<z.ZodNumber>; }, z.core.$strict>>;