Vairified TypeScript SDK - v0.3.1
    Preparing search index...

    Interface GameInput

    One scored game within a MatchInput.

    scores contains one integer per team, in the same order as the parent match's teams list. For a standard 2-team game that's [team1Score, team2Score]. Longer lists are supported for n-team matches.

    All other fields override the parent match's defaults for this specific game (e.g. a championship game played to 15 when the rest of the match was to 11).

    interface GameInput {
        scores: readonly number[];
        identifier?: string;
        winScore?: number;
        winBy?: number;
    }
    Index

    Properties

    scores: readonly number[]
    identifier?: string
    winScore?: number
    winBy?: number