5 lines
112 B
TypeScript
5 lines
112 B
TypeScript
import { Game } from "@mancala/core";
|
|
|
|
export interface BackendGame extends Game {
|
|
spectatorIds: string[];
|
|
} |