| 9 | ); |
| 10 | |
| 11 | export interface CodexOutputCapture { |
| 12 | file: number; |
| 13 | maxFileBytes: number; |
| 14 | tailBytes: number; |
| 15 | writtenBytes: number; |
| 16 | truncated: boolean; |
| 17 | tail: Buffer<ArrayBufferLike>; |
| 18 | } |
| 19 | |
| 20 | export function openCodexOutputCapture( |
| 21 | filePath: string, |
nothing calls this directly
no outgoing calls
no test coverage detected