frontend
    Preparing search index...

    Interface ClockSolitaireResponse

    Full Clock Solitaire game state returned from the API.

    interface ClockSolitaireResponse {
        currentCard?: Card;
        faceUpCount: number[];
        message: string;
        messageCode?: string;
        messageParams?: Record<string, string>;
        phase: number;
        piles: ClockSolitaireCard[][];
        stepCount: number;
    }
    Index

    Properties

    currentCard?: Card
    faceUpCount: number[]
    message: string
    messageCode?: string
    messageParams?: Record<string, string>
    phase: number
    stepCount: number