UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

13 lines (12 loc) 335 B
import { z } from 'zod'; /** * /v2/guild/permissions definition */ export declare const GuildPermissionsDTO: z.ZodArray<z.ZodObject<{ /** The permission id. */ id: z.ZodString; /** The permission name. */ name: z.ZodString; /** Description of the permission. */ description: z.ZodString; }, z.core.$strict>>;