tournament-organizer
    Preparing search index...

    Interface SettablePlayerValues

    All properties that can be set with Player.set.

    See PlayerValues for detailed descriptions of properties.

    interface SettablePlayerValues {
        active?: boolean;
        matches?: {
            bye: boolean;
            draw: number;
            id: string;
            loss: number;
            opponent: string;
            pairUpDown: boolean;
            seating: -1 | 1;
            win: number;
        }[];
        meta?: { [key: string]: any };
        name?: string;
        value?: number;
    }
    Index

    Properties

    active?: boolean
    matches?: {
        bye: boolean;
        draw: number;
        id: string;
        loss: number;
        opponent: string;
        pairUpDown: boolean;
        seating: -1 | 1;
        win: number;
    }[]
    meta?: { [key: string]: any }
    name?: string
    value?: number