This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/stubs/readtime/api.pyi
2021-12-29 16:24:22 +01:00

6 lines
219 B
Python

from .result import Result
def of_text(text: str, wpm: int | None = ...) -> Result: ...
def of_html(html: str, wpm: int | None = ...) -> Result: ...
def of_markdown(markdown: str, wpm: int | None = ...) -> Result: ...