diff options
Diffstat (limited to 'types.d.ts')
-rw-r--r-- | types.d.ts | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -39,7 +39,7 @@ export interface Game { bag_of_glory: FactionId[]; bonuses: number[]; current_events: CardId[]; - discard: number[][]; + discard: CardId[][]; engine: EngineNode[]; /** * Set to faction whos turn it is or null if not player turn @@ -252,4 +252,8 @@ export interface PlayCardArgs extends EngineNodeArgsBase { export interface PlayerTurnArgs extends EngineNodeArgsBase { } +export interface EndOfYearDiscardArgs { + d: Array<{h: CardId[]; t: CardId[]}>; +} + // #endregion |