poezio/poezio/poopt.pyi
Maxime “pep” Buquet e478ea5328 Add poopt.pyi
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-04-07 17:35:07 +02:00

7 lines
228 B
Python

from typing import List, Tuple
def xwcwidth(c: str) -> int: ...
def cut_text(string: str, width: int) -> List[Tuple[int, int]]: ...
def wcswidth(string: str) -> int: ...
def cut_by_columns(string: str, limit: int) -> str: ...