UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

5 lines (4 loc) 263 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>;