Interface AnalyticsPresentationHostExperimental

Callbacks the host hands to an adapter at mount time. The adapter may call emit any number of times; the host owns debouncing and state commits.

interface AnalyticsPresentationHost {
    emit(interaction: AnalyticsInteraction): void;
    reportWarning?(message: string, detail?: Readonly<Record<string, unknown>>): void;
}

Methods