@datadog/browser-logs
Version:
14 lines (13 loc) • 567 B
TypeScript
import type { Context, ClocksState, Observable, BufferedData } from '@datadog/browser-core';
import { noop } from '@datadog/browser-core';
import type { LogsConfiguration } from '../configuration';
import type { LifeCycle } from '../lifeCycle';
export interface ProvidedError {
startClocks: ClocksState;
error: unknown;
context?: Context;
handlingStack: string;
}
export declare function startRuntimeErrorCollection(configuration: LogsConfiguration, lifeCycle: LifeCycle, bufferedDataObservable: Observable<BufferedData>): {
stop: typeof noop;
};