/** * View 2: Per-Entry Drill-down. * * Shows detailed per-call breakdown for a specific run, highlighting * slowest calls, highest token counts, and any errors/retries. * * @module */ import type { RunLog } from '../../ai/types.js'; /** * Render the per-entry drill-down for a specific run. * * Displays each entry with: File, Model, In Tok, Out Tok, Cache R, Cache W, * Latency, Retries, Status. Highlights outliers. * * @param log - The run log to drill into */ export declare function renderEntriesTable(log: RunLog): void; //# sourceMappingURL=entries.d.ts.map