Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jethron committed Jan 25, 2024
1 parent 8bbaa77 commit 57e9e31
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions api-docs/docs/browser-tracker/browser-tracker.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,14 @@ export interface BrowserTracker {
enableActivityTrackingCallback: (configuration: ActivityTrackingConfiguration & ActivityTrackingConfigurationCallback) => void;
enableAnonymousTracking: (configuration?: EnableAnonymousTrackingConfiguration) => void;
flushBuffer: (configuration?: FlushBufferConfiguration) => void;
getCookieName: (basename: string) => void;
getDomainSessionIndex: () => void;
getDomainUserId: () => void;
getDomainUserInfo: () => void;
getCookieName: (basename: string) => string;
getDomainSessionIndex: () => number;
getDomainUserId: () => string;
// Warning: (ae-forgotten-export) The symbol "ParsedIdCookie" needs to be exported by the entry point index.module.d.ts
getDomainUserInfo: () => ParsedIdCookie;
getPageViewId: () => string;
getTabId: () => string | null;
getUserId: () => void;
getUserId: () => string | null | undefined;
id: string;
namespace: string;
newSession: () => void;
Expand Down

0 comments on commit 57e9e31

Please sign in to comment.