overcentric
Version:
Overcentric watches your website, product, and users - and tells you what matters and what to do about it.
20 lines (19 loc) • 573 B
TypeScript
import { InitOptions } from './types';
export declare const CONFIG: {
basePath: string;
debugMode: boolean;
dockColor: string;
dockColorSecondary: string;
dockCalloutText: string;
isRecordingEnabled: boolean;
isKBEnabled: boolean;
isChatEnabled: boolean;
projectURL: string;
ignoredNetworkErrorUrlPatterns: string[];
initDefaults: Omit<Partial<InitOptions>, "context">;
};
export declare const log: {
debug: (message: string) => void;
error: (message: string, info?: any) => void;
warn: (message: string) => void;
};