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