/** * Summary Report Generator * * Generates a SUMMARY.md markdown report from a session recording. * Includes: metadata, action timeline, error summary, screenshots list. */ import type { ConsoleEntry, NetworkEntry } from './listeners.js'; import type { SessionManifest } from './session.js'; export interface DetectedError { source: 'console' | 'network' | 'server'; message: string; timestamp: number; /** e.g. status code for network, log level for console */ code?: string; } export interface SummaryOptions { manifest: SessionManifest; consoleEntries?: ConsoleEntry[]; networkEntries?: NetworkEntry[]; serverErrors?: DetectedError[]; gitBranch?: string; gitCommit?: string; } /** * Generate a SUMMARY.md report from a session manifest and associated data. */ export declare function generateSummary(options: SummaryOptions): string; //# sourceMappingURL=summary.d.ts.map