summaryrefslogtreecommitdiffstats
path: root/typing-stubs/colored/attributes.pyi
diff options
context:
space:
mode:
Diffstat (limited to 'typing-stubs/colored/attributes.pyi')
-rw-r--r--typing-stubs/colored/attributes.pyi14
1 files changed, 14 insertions, 0 deletions
diff --git a/typing-stubs/colored/attributes.pyi b/typing-stubs/colored/attributes.pyi
new file mode 100644
index 0000000..d7fc0ab
--- /dev/null
+++ b/typing-stubs/colored/attributes.pyi
@@ -0,0 +1,14 @@
+from .exceptions import InvalidStyle as InvalidStyle
+from .library import Library as Library
+from .utilities import Utilities as Utilities
+
+class MetaStyle(type):
+ def __getattr__(cls, color: str): ...
+
+class Style(metaclass=MetaStyle):
+ @classmethod
+ def underline_color(cls, color: str | int) -> str: ...
+ @classmethod
+ def UNDERLINE_COLOR(cls, color: str | int) -> str: ...
+
+class style(Style): ...