UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

13 lines (12 loc) 510 B
import { z } from 'zod'; /** * /v2/guild/:id/members definition */ export declare const GuildMembersDTO: z.ZodArray<z.ZodObject<{ /** The account name of the member. */ name: z.ZodString; /** The guild rank of the member. Can be resolved with /v2/guild/:id/ranks. */ rank: z.ZodString; /** The time and date the member joined the guild (ISO-8601 standard). Was not tracked before around March 19th, 2013. */ joined: z.ZodUnion<readonly [z.ZodString, z.ZodNull]>; }, z.core.$strict>>;