import { GameMode } from './GameMode'; import { GameNotification } from './GameNotification'; import { GameOptions } from './GameOptions'; import { Player } from './Player'; import { Tournament } from './Tournament'; export type GameData = { players: Player[]; options: GameOptions; myPlayerId?: PlayerId; mode: GameMode; setup: Game; state: Game; notifications: GameNotification[]; notificationsChannel: string | null; endDate: Date | null; tournament: Tournament | null; version?: number; };