import { GameNotification } from './GameNotification'; import { Player } from './Player'; export type GameMessage = { notifications: GameNotification[]; index: number; players: Player[]; date: string; };