import { z } from 'zod';
import { ballShooterCommandSchema, ballShooterStatusSchema } from './BallShooter.schema';

export type BallShooterCommand = z.infer<typeof ballShooterCommandSchema>;
export type BallShooterStatus = z.infer<typeof ballShooterStatusSchema>;
