Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pdfplumber/_typing.py: 90%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from typing import Any, Dict, Iterable, List, Literal, Sequence, Tuple, Union
3T_seq = Sequence
4T_num = Union[int, float]
5T_point = Tuple[T_num, T_num]
6T_bbox = Tuple[T_num, T_num, T_num, T_num]
7T_obj = Dict[str, Any]
8T_obj_list = List[T_obj]
9T_obj_iter = Iterable[T_obj]
10T_dir = Union[Literal["ltr"], Literal["rtl"], Literal["ttb"], Literal["btt"]]