Spaces:
NSOUP
/
No application file

File size: 333 Bytes
ba8d952
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# 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]: ...