A collection of graphical elements including boxes, ellipses, arrows, and unrecognized text.
| 76 | |
| 77 | @dataclass |
| 78 | class Drawing: |
| 79 | """A collection of graphical elements including boxes, ellipses, arrows, and unrecognized text.""" |
| 80 | |
| 81 | type: Literal["Drawing"] |
| 82 | |
| 83 | items: Annotated[list[Box | Arrow | Ellipse | UnknownText], Doc("List of drawable elements.")] |
no outgoing calls
no test coverage detected
searching dependent graphs…