@skyblock-finance/actions
Version:
This package contains actions players can take in Hypixel Skyblock
14 lines (12 loc) • 448 B
text/typescript
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>