UNPKG

@guildxyz/types

Version:

Types related to the Guild.xyz API

11 lines (9 loc) 195 B
import { z } from "zod"; export default z.object({ type: z.literal("CAPTCHA"), data: z .object({ maxAmount: z.number().int().nonnegative().optional(), }) .default({}), });