5 lines
219 B
Python
5 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: ...
|