| 415 | |
| 416 | |
| 417 | class SectionExtractionCoverage(TypedDict, total=False): |
| 418 | coverage_status: str |
| 419 | recognized_sections: list[str] |
| 420 | core_sections_found: list[str] |
| 421 | missing_core_sections: list[str] |
| 422 | section_text_chars: dict[str, int] |
| 423 | fallback_sections: list[str] |
| 424 | |
| 425 | |
| 426 | class PdfCoverage(TypedDict, total=False): |
nothing calls this directly
no outgoing calls
no test coverage detected