AVP 3DWS Deck Documentation
    Preparing search index...

    Type Alias DeckReadinessEvent

    Event that fires when the matchmaker capacity check completes during the component mount phase.

    Fires once on mount after the capacity check completes, regardless of outcome.

    CustomEvent of type readiness with detail { isReady: boolean, checks: { instances: { ok: boolean, reason?: string } } }.

    .addEventListener('readiness', (event) =>
    console.log("Capacity check result:", event.detail.isReady, event.detail.checks)
    )
    type DeckReadinessEvent = {
        detail: {
            checks: { instances: { ok: boolean; reason?: string } };
            isReady: boolean;
        };
        type: "readiness";
    }
    Index
    detail: {
        checks: { instances: { ok: boolean; reason?: string } };
        isReady: boolean;
    }
    type: "readiness"