diff options
Diffstat (limited to 'types.d.ts')
-rw-r--r-- | types.d.ts | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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']; |