This commit is contained in:
Jose Conde
2024-07-16 19:21:35 +02:00
parent 97b490c058
commit 2b54efb604
10 changed files with 73 additions and 47 deletions

View File

@ -1,10 +1,13 @@
import { PlayerDto } from "./PlayerDto";
import { Score } from "../../server/db/interfaces";
import { PlayerDto, TileDto } from "./PlayerDto";
export interface GameSummary {
gameId: string;
isBlocked: boolean;
isTied: boolean;
winner: PlayerDto;
score: { id: string, name: string; score: number; }[],
score: Score[],
players?: PlayerDto[];
board: TileDto[]
boneyard: TileDto[]
}