Type Alias GameResult

GameResult:
    | "1-0"
    | "1/2-1/2"
    | "0-1"
    | "*"

Result of a chess game.

  • '1-0' (white wins),
  • '1/2-1/2' (draw),
  • '0-1' (black wins),
  • '*' (unfinished game, or undefined result).