W3Booster SDK 2.0.0
    Preparing search index...

    Interface MatchLifecycleObservationEvent<TSettings, TOverlayExtensions>

    interface MatchLifecycleObservationEvent<
        TSettings extends object = JsonObject,
        TOverlayExtensions extends object = object,
    > {
        initial: boolean;
        match: Match;
        nextMatch?: Match;
        observedAt: string;
        phase: "ended" | "started";
        previousMatch?: Match;
        state: MatchState<TSettings, TOverlayExtensions>;
    }

    Type Parameters

    • TSettings extends object = JsonObject
    • TOverlayExtensions extends object = object

    Hierarchy (View Summary)

    Index
    initial: boolean
    match: Match

    Started match, or the completed snapshot for a same-ID ended transition.

    nextMatch?: Match
    observedAt: string

    Client observation time; this is not an authoritative match timestamp.

    phase: "ended" | "started"
    previousMatch?: Match