browser-debugger-cli
Version:
DevTools telemetry in your terminal. For humans and agents. Direct WebSocket to Chrome's debugging port.
18 lines • 649 B
TypeScript
/**
* Session output file management.
*
* Handles writing final session output to disk.
* Note: Live preview/details now use IPC streaming instead of file writes.
*/
import type { BdgOutput } from '../types';
/**
* Write session output to the final JSON file.
*
* This is written once at the end of a session.
* Note: Preview/details data is now accessed via IPC streaming during collection.
*
* @param output - The BdgOutput data to write
* @param compact - If true, use compact JSON format (no indentation)
*/
export declare function writeSessionOutput(output: BdgOutput, compact?: boolean): void;
//# sourceMappingURL=output.d.ts.map