frontend
    Preparing search index...

    Interface PyramidResponse

    Full Pyramid game state returned from the API.

    interface PyramidResponse {
        canUndo: boolean;
        hint?: PyramidHint;
        isStalemate: boolean;
        message: string;
        messageCode?: string;
        messageParams?: Record<string, string>;
        moveCount: number;
        phase: number;
        pyramid: PyramidCard[][];
        stockCount: number;
        undoToEscape?: number;
        waste: Card[];
    }
    Index

    Properties

    canUndo: boolean
    isStalemate: boolean
    message: string
    messageCode?: string
    messageParams?: Record<string, string>
    moveCount: number
    phase: number
    pyramid: PyramidCard[][]
    stockCount: number
    undoToEscape?: number
    waste: Card[]