UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

6 lines (4 loc) 264 B
import { z } from 'zod'; import { ballShooterCommandSchema, ballShooterStatusSchema } from './BallShooter.schema'; export type BallShooterCommand = z.infer<typeof ballShooterCommandSchema>; export type BallShooterStatus = z.infer<typeof ballShooterStatusSchema>;