summaryrefslogtreecommitdiffstats
path: root/typing-stubs/colored/library.pyi
diff options
context:
space:
mode:
Diffstat (limited to 'typing-stubs/colored/library.pyi')
-rw-r--r--typing-stubs/colored/library.pyi17
1 files changed, 17 insertions, 0 deletions
diff --git a/typing-stubs/colored/library.pyi b/typing-stubs/colored/library.pyi
new file mode 100644
index 0000000..c8ff33a
--- /dev/null
+++ b/typing-stubs/colored/library.pyi
@@ -0,0 +1,17 @@
+from dataclasses import dataclass
+
+@dataclass
+class Library:
+ ESC: str = ...
+ END: str = ...
+ FOREGROUND_256: str = ...
+ BACKGROUND_256: str = ...
+ FOREGROUND_RGB: str = ...
+ BACKGROUND_RGB: str = ...
+ UNDERLINE_COLOR: str = ...
+ CONTROLS = ...
+ STYLES = ...
+ COLORTERM = ...
+ COLORS = ...
+ HEX_COLORS = ...
+ def __init__(self, ESC, END, FOREGROUND_256, BACKGROUND_256, FOREGROUND_RGB, BACKGROUND_RGB, UNDERLINE_COLOR) -> None: ...