summaryrefslogtreecommitdiff
path: root/poezio/poopt.pyi
blob: 3762c94ac8f92db9a74e6d824129b217fbcbb515 (plain)
1
2
3
4
5
6
7

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: ...