Bases: TypedDict
Calculated width and height of paragraph text layer bounding box.
Source code in src\helpers\bounds.py
| class TextboxDimensions(TypedDict):
"""Calculated width and height of paragraph text layer bounding box."""
width: int
height: int
|