(raw: str, text_before: str, text_after: str, cls: type[I])
| 165 | I = TypeVar("I") |
| 166 | @overload |
| 167 | def webscrape_count(raw: str, text_before: str, text_after: str, cls: type[I]) -> I: |
| 168 | pass |
| 169 | |
| 170 | @overload |
| 171 | def webscrape_count(raw: str, text_before: str, text_after: str) -> int: |