browser-debugger-cli
Version:
DevTools telemetry in your terminal. For humans and agents. Direct WebSocket to Chrome's debugging port.
8 lines • 559 B
TypeScript
import type { TelemetryStore } from './TelemetryStore.js';
import type { TelemetryPlugin } from './plugins.js';
import type { WorkerConfig } from './types.js';
import type { CDPConnection } from '../../connection/cdp.js';
import type { CleanupFunction } from '../../types';
import type { Logger } from '../../ui/logging/index.js';
export declare function startTelemetryCollectors(cdp: CDPConnection, config: WorkerConfig, store: TelemetryStore, logger: Logger, plugins?: TelemetryPlugin[]): Promise<CleanupFunction[]>;
//# sourceMappingURL=collectors.d.ts.map