| 424 | |
| 425 | |
| 426 | class PdfCoverage(TypedDict, total=False): |
| 427 | total_pages: int | None |
| 428 | text_max_pages: int | None |
| 429 | text_pages_scanned: int |
| 430 | truncated_due_to_page_limit: bool |
| 431 | appendix_detected: bool |
| 432 | appendix_start_page: int | None |
| 433 | references_start_page: int | None |
| 434 | section_stop_reason: str |
| 435 | section_stop_page: int | None |
| 436 | |
| 437 | |
| 438 | class AppendixIndex(TypedDict, total=False): |
nothing calls this directly
no outgoing calls
no test coverage detected