@microsoft/clarity
Version:
10 lines (9 loc) • 397 B
TypeScript
declare const Clarity: {
init : (projectId: string) => void;
setTag : (key: string, value: string | string[]) => void;
identify : (customeId : string, customSessionId?: string, customPageId?: string, friendlyName?: string) => void;
consent : (consent? : boolean) => void;
upgrade : (reason : string) => void;
event : (eventName : string) => void;
}
export default Clarity;