Interface SettableMatchValues

All properties that can be set with Match.values.

See MatchValues for detailed descriptions of properties.

interface SettableMatchValues {
    active?: boolean;
    bye?: boolean;
    match?: number;
    meta?: {
        [key: string]: any;
    };
    path?: {
        loss?: string;
        win?: string;
    };
    player1?: {
        draw?: number;
        id?: string;
        loss?: number;
        win?: number;
    };
    player2?: {
        draw?: number;
        id?: string;
        loss?: number;
        win?: number;
    };
    round?: number;
}

Properties

active?: boolean
bye?: boolean
match?: number
meta?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
path?: {
    loss?: string;
    win?: string;
}

Type declaration

  • Optional loss?: string
  • Optional win?: string
player1?: {
    draw?: number;
    id?: string;
    loss?: number;
    win?: number;
}

Type declaration

  • Optional draw?: number
  • Optional id?: string
  • Optional loss?: number
  • Optional win?: number
player2?: {
    draw?: number;
    id?: string;
    loss?: number;
    win?: number;
}

Type declaration

  • Optional draw?: number
  • Optional id?: string
  • Optional loss?: number
  • Optional win?: number
round?: number