import { MancalaGame } from "mancala.js"; import { UserConnectionInfo } from "./UserConnectionInfo"; export interface Game { id: string; mancalaGame: MancalaGame; gameUsersConnectionInfo: GameUsersConnectionInfo; } export interface GameUsersConnectionInfo { user1ConnectionInfo: UserConnectionInfo; user2ConnectionInfo: UserConnectionInfo; }