clarity-js
Version:
An analytics library that uses web page interactions to generate aggregated insights
41 lines (35 loc) • 1.37 kB
TypeScript
import * as Core from "./core";
import * as Data from "./data";
import * as Diagnostic from "./diagnostic";
import * as Layout from "./layout";
import * as Interaction from "./interaction";
import * as Performance from "./performance";
interface Clarity {
start: (config?: Core.Config) => void;
stop: () => void;
pause: () => void;
resume: () => void;
upgrade: (key: string) => void;
consent: (status?: boolean) => void;
consentv2: (consentState?: Data.ConsentState, source?: number) => void;
event: (name: string, value: string) => void;
set: (variable: string, value: string | string[]) => void;
identify: (userId: string, sessionId?: string, pageId?: string, userHint?: string) => void;
metadata: (callback: Data.MetadataCallback, wait?: boolean, recall?: boolean, consentInfo?: boolean) => void;
signal: (callback: Data.SignalCallback) => void;
}
interface Selector {
get: (input: Layout.SelectorInput, type: Layout.Selector) => string;
reset: () => void;
}
interface Helper {
get: (node: Node) => Layout.NodeValue;
getNode: (id: number) => Node;
hash: (input: string) => string;
lookup: (hash: string) => number;
selector: Selector;
}
declare const clarity: Clarity;
declare const helper: Helper;
declare const version: string;
export { clarity, version, helper, Core, Data, Diagnostic, Layout, Interaction, Performance };