mancala/backend/src/models/Game.ts

5 lines
112 B
TypeScript
Raw Normal View History

2024-06-17 15:37:17 +03:00
import { Game } from "@mancala/core";
2022-08-01 21:34:42 +03:00
2024-06-17 15:37:17 +03:00
export interface BackendGame extends Game {
2022-09-02 00:33:31 +03:00
spectatorIds: string[];
2022-08-01 21:34:42 +03:00
}