aio-analytics
Version:
[Victor Tran](https://stackoverflow.com/users/11862231/victor-tran)
16 lines (15 loc) • 671 B
TypeScript
/// <reference types="react" />
export declare const ga: {
initGA: (gaId?: string | undefined) => void;
logPageView: (url: string) => void;
logEvent: (args: import("react-ga").EventArgs, value: any) => void;
logException: (description?: string, fatal?: boolean) => void;
};
export declare const gtm: {
useGtm: () => {
sendGtm: (value: import("./interfaces").UseGTMProps) => void;
useGTMDispatch: typeof import("@elgorditosalsero/react-gtm-hook").useGTMDispatch;
};
GtmWrapper: import("react").FC<import("./interfaces").GTMWrapperProps>;
};
export declare const aa: import("./AA/autonomous").AutonomousAnalytics;