UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

25 lines (24 loc) 796 B
import { z } from 'zod'; /** * /v2/wvw/matches/overview definition */ export declare const WvWMatchesOverviewDTO: z.ZodObject<{ /** The WvW match id. */ id: z.ZodString; /** The starting time of the matchup. (ISO-8601 Standard) */ worlds: z.ZodObject<{ red: z.ZodNumber; blue: z.ZodNumber; green: z.ZodNumber; }, z.core.$strict>; /** The ending time of the matchup. (ISO-8601 Standard) */ all_worlds: z.ZodRecord<z.ZodEnum<{ red: "red"; blue: "blue"; green: "green"; }>, z.ZodArray<z.ZodNumber>>; /** An object containing the score of the three servers. */ start_time: z.ZodString; /** An object containing the IDs of the three primary matchup worlds. */ end_time: z.ZodString; }, z.core.$strict>;