frontend
    Preparing search index...

    Interface FreeCellResponse

    Full FreeCell game state returned from the API.

    interface FreeCellResponse {
        canUndo: boolean;
        foundation: Card[][];
        freeCells: (Card | null)[];
        hint?: FreeCellHint;
        isStalemate: boolean;
        message: string;
        messageCode?: string;
        messageParams?: Record<string, string>;
        moveCount: number;
        phase: number;
        tableau: (Card | null)[][];
        undoToEscape?: number;
    }
    Index

    Properties

    canUndo: boolean
    foundation: Card[][]
    freeCells: (Card | null)[]
    isStalemate: boolean
    message: string
    messageCode?: string
    messageParams?: Record<string, string>
    moveCount: number
    phase: number
    tableau: (Card | null)[][]
    undoToEscape?: number