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

    Interface Standing

    A player's position in the standings table.

    interface Standing {
        player: string;
        rank: number;
        score: number;
        tiebreaks: number[];
    }
    Index

    Properties

    player: string

    Player identifier.

    rank: number

    1-based rank. Tied players share the same rank.

    score: number

    Cumulative score across all recorded games.

    tiebreaks: number[]

    Tiebreak values in the order the tiebreak functions were provided.