frontend
    Preparing search index...

    Interface DoubtResponse

    Full Doubt game state returned from the API.

    interface DoubtResponse {
        cpuActions: DoubtCpuAction[];
        cpuDoubters: number[];
        currentTurn: number;
        doubtWindowSec: number;
        gameEndFlag: boolean;
        humanAction: DoubtCpuAction | null;
        lastAction: DoubtCpuAction | null;
        lastDoubtResult: DoubtDoubtResult | null;
        message: string;
        messageCode?: string;
        messageParams?: Record<string, string>;
        metaAI?: DoubtMetaAI;
        penaltyDrawLimit: number;
        phase: 0 | 1 | 2;
        players: DoubtPlayerData[];
        profile?: DoubtHumanProfileData;
        tableCardCount: number;
        winnerIdx: number;
    }
    Index

    Properties

    cpuActions: DoubtCpuAction[]
    cpuDoubters: number[]
    currentTurn: number
    doubtWindowSec: number
    gameEndFlag: boolean
    humanAction: DoubtCpuAction | null
    lastAction: DoubtCpuAction | null
    lastDoubtResult: DoubtDoubtResult | null
    message: string
    messageCode?: string
    messageParams?: Record<string, string>
    metaAI?: DoubtMetaAI
    penaltyDrawLimit: number
    phase: 0 | 1 | 2
    players: DoubtPlayerData[]
    tableCardCount: number
    winnerIdx: number