(filePath: string)
| 21 | * Parse a single JSONL file into structured session data |
| 22 | */ |
| 23 | export function parseSessionFile(filePath: string): ParsedSession | null { |
| 24 | const content = readFileSync(filePath, 'utf-8'); |
| 25 | return parseSessionContent(content, filePath); |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Parse JSONL content string into structured session data |
no test coverage detected