UNPKG

410 BTypeScriptView Raw
1import { Configuration } from '@datadog/browser-core';
2export declare const LOGGER_SESSION_KEY = "logs";
3export interface LoggerSession {
4 getId: () => string | undefined;
5 isTracked: () => boolean;
6}
7export declare enum LoggerTrackingType {
8 NOT_TRACKED = "0",
9 TRACKED = "1"
10}
11export declare function startLoggerSession(configuration: Configuration, areCookieAuthorized: boolean): LoggerSession;