import { Action } from '@gamepark/rules-api'; import { Player } from './Player'; import { GameOptions } from './GameOptions'; export type ProxyGameData = { playerId?: PlayerId; players: Player[]; setup: Game; state: Game; actions: Action[]; monkeyOpponents: boolean; tutorial?: number; options?: GameOptions; };