import { MancalaGame } from "mancala.js"; export interface GameStore { get(id: string): MancalaGame | undefined; set(id: string, game: MancalaGame): void; remove(id: string): void; }