UNPKG

@skyblock-finance/actions

Version:

This package contains actions players can take in Hypixel Skyblock

8 lines (7 loc) 449 B
import { z } from 'zod'; import { actionIoCurrencySchema, actionIoItemSchema, actionIoSchema, actionSchema } from './schema'; export type Action = z.output<typeof actionSchema>; export type ActionCurrency = z.output<typeof actionIoCurrencySchema.shape.id>; export type ActionIo = z.output<typeof actionIoSchema>; export type ActionIoCurrency = z.output<typeof actionIoCurrencySchema>; export type ActionIoItem = z.output<typeof actionIoItemSchema>;