Viktorani API - v0.0.8
    Preparing search index...

    Interface SerializedGameState

    Minimal game-state snapshot sent to players on join so they can render the current question, scores, and buzzer state without DB access.

    interface SerializedGameState {
        buzzerLocked: boolean;
        currentQuestionIdx: number;
        currentRoundIdx: number;
        gameId: string;
        scores: Record<string, number>;
        showAnswers: boolean;
        showMedia: boolean;
        showQuestion: boolean;
        status: string;
    }
    Index

    Properties

    buzzerLocked: boolean
    currentQuestionIdx: number
    currentRoundIdx: number
    gameId: string
    scores: Record<string, number>
    showAnswers: boolean
    showMedia: boolean
    showQuestion: boolean
    status: string