-
-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathblessings.pyi
More file actions
47 lines (46 loc) · 1.02 KB
/
blessings.pyi
File metadata and controls
47 lines (46 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from typing import ContextManager, Text, IO
class Terminal:
def __init__(self, stream=None, force_styling=False):
# type: (IO, bool) -> None
pass
def location(self, x=None, y=None):
# type: (int, int) -> ContextManager
pass
@property
def hide_cursor(self):
# type: () -> Text
pass
@property
def normal_cursor(self):
# type: () -> Text
pass
@property
def height(self):
# type: () -> int
pass
@property
def width(self):
# type: () -> int
pass
def fullscreen(self):
# type: () -> ContextManager
pass
def move(self, y, x):
# type: (int, int) -> Text
pass
@property
def clear_eol(self):
# type: () -> Text
pass
@property
def clear_bol(self):
# type: () -> Text
pass
@property
def clear_eos(self):
# type: () -> Text
pass
@property
def clear_eos(self):
# type: () -> Text
pass