guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
14 lines (13 loc) • 406 B
TypeScript
import { z } from 'zod';
/**
* /v2/account/masteries definition
*/
export declare const AccountMasteriesDTO: z.ZodArray<z.ZodObject<{
/** The id of the mastery resolvable against /v2/masteries. */
id: z.ZodNumber;
/**
* Indicates the level at which the mastery is on the account.
* Is a 0-indexed reference to the /v2/masteries.
*/
level: z.ZodNumber;
}, z.core.$strict>>;