guildwars2-ts
Version:
GuildWars 2 API Wrapper in Typescript
13 lines (12 loc) • 405 B
TypeScript
import { z } from 'zod';
/**
* /v2/account/finishers definition
*/
export declare const AccountFinishersDTO: z.ZodArray<z.ZodObject<{
/** Id of the finisher. */
id: z.ZodNumber;
/** Indicated whether the finisher is permanent or temporary. */
permanent: z.ZodBoolean;
/** Indicates uses if the finisher is temporary. */
quantity: z.ZodOptional<z.ZodNumber>;
}, z.core.$strict>>;