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

    Interface BuzzEvent

    A single buzz event recorded during a question.

    timestamp uses performance.now() offset from Date.now() at session start to provide sub-millisecond precision for ordering simultaneous buzzes. isFalseStart is set when the buzz arrived while buzzerLocked was true.

    interface BuzzEvent {
        decidedAt: number | null;
        gameId: string;
        gmDecision: GmDecision | null;
        id: string;
        isFalseStart: boolean;
        playerId: string;
        playerName: string;
        questionId: string;
        teamId: string | null;
        timestamp: number;
    }
    Index

    Properties

    decidedAt: number | null
    gameId: string
    gmDecision: GmDecision | null
    id: string
    isFalseStart: boolean

    true when the buzz arrived before the GM unlocked the buzzer.

    playerId: string
    playerName: string
    questionId: string
    teamId: string | null
    timestamp: number

    High-precision client-side timestamp for ordering (microseconds).