@echecs/tournament - v2.1.1
    Preparing search index...

    Interface Game

    A recorded game between two players.

    interface Game {
        black: string;
        kind?: GameKind;
        result: Result;
        white: string;
    }
    Index

    Properties

    Properties

    black: string

    Player identifier for black.

    kind?: GameKind

    Optional classification of the game type. When set, must be consistent with Result.

    result: Result

    Result from white's perspective.

    white: string

    Player identifier for white.