massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / curses / __init__.pyi
1 from _curses import *  # noqa: F403
2 from _curses import _CursesWindow as _CursesWindow
3 from typing import Any, Callable, TypeVar
4
5 _T = TypeVar("_T")
6
7 # available after calling `curses.initscr()`
8 LINES: int
9 COLS: int
10
11 # available after calling `curses.start_color()`
12 COLORS: int
13 COLOR_PAIRS: int
14
15 def wrapper(__func: Callable[..., _T], *arg: Any, **kwds: Any) -> _T: ...