admesh-ui-sdk
Version:
Beautiful, modern React components for displaying AI-powered product recommendations with citation-based conversation ads, auto-triggered widgets, floating chat, conversational interfaces, persistent sidebar, and built-in tracking. Includes zero-code SDK
17 lines • 612 B
TypeScript
export interface InlineExposureTrackingParams {
exposureUrl?: string;
adId?: string;
linkElement?: HTMLElement | null;
sessionId?: string;
logPrefix?: string;
}
export interface InlineExposureTracker {
startTracking: (params: InlineExposureTrackingParams) => void;
cleanup: () => void;
}
/**
* Creates an inline exposure tracker that fires AdMesh exposure pixels when
* detected links meet the MRC viewability threshold (50% visible for 1 second).
*/
export declare const createInlineExposureTracker: () => InlineExposureTracker;
//# sourceMappingURL=inlineExposureTracker.d.ts.map