UNPKG

@skyblock-finance/schemas

Version:

This package uses [`zod`](https://www.npmjs.com/package/zod) to validate the format of Hypixel Skyblock API responses

9 lines (6 loc) 154 B
import { z } from 'zod' export const perkSchema = z.object({ description: z.string(), name: z.string(), }) export const yearSchema = z.number().int()