envs_2 / vllm /lib /python3.10 /site-packages /blessed /win_terminal.pyi
ZTWHHH's picture
Add files using upload-large-folder tool
7d577ba verified
raw
history blame
333 Bytes
# std imports
from typing import Optional, ContextManager
# local
from .terminal import Terminal as _Terminal
class Terminal(_Terminal):
def getch(self) -> str: ...
def kbhit(self, timeout: Optional[float] = ...) -> bool: ...
def cbreak(self) -> ContextManager[None]: ...
def raw(self) -> ContextManager[None]: ...