import { z } from 'zod';
import { kartGameSchema, kartSchema, kartShieldSchema, kartStatusSchema } from './Kart.schema';

export type KartStatus = z.infer<typeof kartStatusSchema>;
export type KartShield = z.infer<typeof kartShieldSchema>;
export type KartGame = z.infer<typeof kartGameSchema>;
export type Kart = z.infer<typeof kartSchema>;
