summaryrefslogtreecommitdiff
path: root/src/api/Chessh.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/Chessh.ts')
-rw-r--r--src/api/Chessh.ts18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/api/Chessh.ts b/src/api/Chessh.ts
new file mode 100644
index 0000000..7a35444
--- /dev/null
+++ b/src/api/Chessh.ts
@@ -0,0 +1,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;
+}