Interface AnalyticsMountRequestExperimental

Everything an adapter needs to mount, minus anything renderer-specific.

interface AnalyticsMountRequest {
    artifact: AnalyticsArtifact;
    host: AnalyticsPresentationHost;
    linkedState?: AnalyticsLinkedState;
    locale?: string;
    target?: unknown;
}

Properties

linkedState?: AnalyticsLinkedState

Initial shared state.

EMPTY_ANALYTICS_LINKED_STATE
locale?: string

BCP-47 tag used for number / date formatting.

target?: unknown

Opaque render target. The SDK never inspects it — the default DOM presentation expects an Element, a canvas adapter may expect a container, and a headless adapter may ignore it entirely.