@grafana/faro-web-sdk
Version:
Faro instrumentations, metas, transports for web.
13 lines (12 loc) • 525 B
TypeScript
import { BaseInstrumentation, LogLevel } from '@grafana/faro-core';
import type { ConsoleInstrumentationOptions } from './types';
export declare class ConsoleInstrumentation extends BaseInstrumentation {
private options;
readonly name = "@grafana/faro-web-sdk:instrumentation-console";
readonly version = "1.14.3";
static defaultDisabledLevels: LogLevel[];
static consoleErrorPrefix: string;
private errorSerializer;
constructor(options?: ConsoleInstrumentationOptions);
initialize(): void;
}