summaryrefslogtreecommitdiff
path: root/types.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'types.d.ts')
-rw-r--r--types.d.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/types.d.ts b/types.d.ts
index e9d2c95..b2e915b 100644
--- a/types.d.ts
+++ b/types.d.ts
@@ -74,6 +74,7 @@ export interface Game {
glory_current_year?: Record<FactionId, boolean> | null;
fascist: 0 | 1;
card_played: 0 | 1;
+ hidden_bag?: 0 | 1;
}
export interface View {
@@ -81,11 +82,8 @@ export interface View {
prompt: string | null;
actions?: any;
victory?: string;
- // current: Player | 'Observer';
- // current_player_faction: FactionId | null;
selected_cards: number[];
- bag_of_glory: Game['bag_of_glory']; // TODO: remove
- bag_of_glory_count: number;
+ bag_of_glory?: Game['bag_of_glory'];
bonuses: Game['bonuses'];
current_events: CardId[];
first_player: Game['first_player'];