massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 3 / curses / textpad.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/3/curses/textpad.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/3/curses/textpad.pyi
new file mode 100644 (file)
index 0000000..3996822
--- /dev/null
@@ -0,0 +1,11 @@
+from _curses import _CursesWindow\r
+from typing import Callable, Union\r
+\r
+def rectangle(win: _CursesWindow, uly: int, ulx: int, lry: int, lrx: int) -> None: ...\r
+\r
+class Textbox:\r
+    stripspaces: bool\r
+    def __init__(self, w: _CursesWindow, insert_mode: bool= ...) -> None: ...\r
+    def edit(self, validate: Callable[[int], int]) -> str: ...\r
+    def do_command(self, ch: Union[str, int]) -> None: ...\r
+    def gather(self) -> str: ...\r