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, 5 insertions, 1 deletions
diff --git a/types.d.ts b/types.d.ts
index 213b25d..3afee29 100644
--- a/types.d.ts
+++ b/types.d.ts
@@ -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