| 479 | |
| 480 | |
| 481 | class FigurePlanItem(TypedDict, total=False): |
| 482 | id: str |
| 483 | caption: str |
| 484 | kind: str |
| 485 | section: str |
| 486 | reason: str |
| 487 | priority: int |
| 488 | anchor_text: str |
| 489 | insert_mode: str |
| 490 | figure_asset_candidate: FigureAssetCandidate |
| 491 | candidate_pages: list[dict[str, Any]] |
| 492 | candidate_status: str |
| 493 | matching_strategy: str |
| 494 | |
| 495 | |
| 496 | class FigurePlan(TypedDict, total=False): |
nothing calls this directly
no outgoing calls
no test coverage detected