domino-server/src/game/dto/GameSummary.ts
Jose Conde 2b54efb604 tuning
2024-07-16 19:21:35 +02:00

13 lines
299 B
TypeScript

import { Score } from "../../server/db/interfaces";
import { PlayerDto, TileDto } from "./PlayerDto";
export interface GameSummary {
gameId: string;
isBlocked: boolean;
isTied: boolean;
winner: PlayerDto;
score: Score[],
players?: PlayerDto[];
board: TileDto[]
boneyard: TileDto[]
}