summaryrefslogtreecommitdiff
path: root/frontend/src/models/currentGame.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/models/currentGame.js')
-rw-r--r--frontend/src/models/currentGame.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/src/models/currentGame.js b/frontend/src/models/currentGame.js
index 6ff00858..398c65e8 100644
--- a/frontend/src/models/currentGame.js
+++ b/frontend/src/models/currentGame.js
@@ -1,7 +1,8 @@
import { List } from 'immutable';
-import type { ApiPlayerTurnInfo } from '../api/model';
+import type { ApiPlayerTurnInfo, ApiTable } from '../api/model';
export class CurrentGameState {
readyUsernames: List<string> = new List();
- turnInfo: ApiPlayerTurnInfo | null = null
+ turnInfo: ApiPlayerTurnInfo | null = null;
+ table: ApiTable | null = null;
}
bgstack15