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

6 lines
204 B
Python
Raw Normal View History

2021-12-28 22:31:53 +01:00
from .result import Result
def of_text(text, wpm: int | None = ...) -> Result: ...
def of_html(html, wpm: int | None = ...) -> Result: ...
def of_markdown(markdown, wpm: int | None = ...) -> Result: ...