feat : show eval

This commit is contained in:
GuillaumeSD
2024-02-17 19:58:00 +01:00
parent 770ae13517
commit 98d99c0df0
10 changed files with 224 additions and 50 deletions

View File

@@ -5,10 +5,12 @@ export interface MoveEval {
export interface LineEval {
pv: string[];
score?: number;
cp?: number;
mate?: number;
}
export interface GameEval {
moves: MoveEval[];
whiteAccuracy: number;
blackAccuracy: number;
}