import { z } from 'zod';
import { battleKartStateSchema, battleSchema } from './Battle.schema';

export type BattleKartState = z.infer<typeof battleKartStateSchema>;
export type Battle = z.infer<typeof battleSchema>;
