summaryrefslogtreecommitdiff
path: root/src/api/Chessh.ts
blob: 7a354448f44d5f448c2df9f3581864cdb933adfa (plain)
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;
}