1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
export interface BotMoveRequest { bot_id: number; bot_name: string; game_id: number; fen: string; turn: string; bot_turn: boolean; last_move: string; status: string; } export interface BotMoveAttempt { attempted_move: string; } export interface BotMoveResponse { message: string; }