guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
21 lines (20 loc) • 667 B
TypeScript
import { z } from 'zod';
/**
* /v2/worlds definition
*/
export declare const WorldsDTO: z.ZodArray<z.ZodObject<{
/** The world id.
* The first digit of the id indicates the world's region. 1 is North America, 2 is Europe.
* The second digit of the id currently correlates with the world's assigned language: 1 means French, 2 means German, and 3 means Spanish. */
id: z.ZodNumber;
/** The world name. */
name: z.ZodString;
/** The world population level. */
population: z.ZodEnum<{
Medium: "Medium";
Low: "Low";
High: "High";
VeryHigh: "VeryHigh";
Full: "Full";
}>;
}, z.core.$strict>>;