UNPKG

@shopana/ga

Version:

Type-safe Google Analytics 4 (GA4) tracking library for React and Next.js with ecommerce support, event batching, and SSR compatibility

10 lines 417 B
import { type AnalyticsClient } from '../core/AnalyticsClient'; import { type GATracker } from '../trackers/GATracker'; import { type DebugChannel } from '../utils/debugChannel'; export interface GAContextValue { client: AnalyticsClient; tracker: GATracker; debugChannel: DebugChannel; } export declare const GAContext: import("react").Context<GAContextValue | null>; //# sourceMappingURL=context.d.ts.map