massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / curses / textpad.pyi
1 from _curses import _CursesWindow
2 from typing import Callable
3
4 def rectangle(win: _CursesWindow, uly: int, ulx: int, lry: int, lrx: int) -> None: ...
5
6 class Textbox:
7     stripspaces: bool
8     def __init__(self, win: _CursesWindow, insert_mode: bool = ...) -> None: ...
9     def edit(self, validate: Callable[[int], int] | None = ...) -> str: ...
10     def do_command(self, ch: str | int) -> None: ...
11     def gather(self) -> str: ...