frontend
    Preparing search index...

    Interface SevensResponse

    Full Sevens game state returned from the API.

    interface SevensResponse {
        config: SevensConfig;
        cpuActions: SevensAction[];
        currentTurn: number;
        gameEndFlag: boolean;
        humanAction: SevensAction | null;
        message: string;
        messageCode?: string;
        messageParams?: Record<string, string>;
        players: SevensPlayerData[];
        tableMaxVals: number[];
        tableMinVals: number[];
        tablePlaced: number[];
    }
    Index

    Properties

    config: SevensConfig
    cpuActions: SevensAction[]
    currentTurn: number
    gameEndFlag: boolean
    humanAction: SevensAction | null
    message: string
    messageCode?: string
    messageParams?: Record<string, string>
    players: SevensPlayerData[]
    tableMaxVals: number[]
    tableMinVals: number[]
    tablePlaced: number[]