UNPKG

guildwars2-ts

Version:

GuildWars 2 API Wrapper in Typescript

18 lines (17 loc) 633 B
import { z } from 'zod'; /** * /v2/account/mastery/points definition */ export declare const AccountMasteryPointsDTO: z.ZodObject<{ /** Mastery points redeemed per section. */ totals: z.ZodArray<z.ZodObject<{ /** Name of the region for the masteries. */ region: z.ZodString; /** Amount of masteries of this region spent in mastery tracks. */ spent: z.ZodNumber; /** Amount of masteries of this region earned for the account. */ earned: z.ZodNumber; }, z.core.$strict>>; /** Array of unlocked mastery ids. */ unlocked: z.ZodArray<z.ZodNumber>; }, z.core.$strict>;