diff options
Diffstat (limited to 'frontend/src/models')
-rw-r--r-- | frontend/src/models/currentGame.js | 5 |
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; } |