UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

11 lines (10 loc) 277 B
import { z } from 'zod'; /** * /v2/account/luck definition */ export declare const AccountLuckDTO: z.ZodArray<z.ZodObject<{ /** Always the string "luck". */ id: z.ZodLiteral<"luck">; /** The amount of luck consume. */ value: z.ZodNumber; }, z.core.$strict>>;