massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / termcolor / termcolor.pyi
1 from typing import Any, Iterable, Text
2
3 ATTRIBUTES: dict[str, int]
4 COLORS: dict[str, int]
5 HIGHLIGHTS: dict[str, int]
6 RESET: str
7
8 def colored(text: Text, color: Text | None = ..., on_color: Text | None = ..., attrs: Iterable[Text] | None = ...) -> Text: ...
9 def cprint(
10     text: Text, color: Text | None = ..., on_color: Text | None = ..., attrs: Iterable[Text] | None = ..., **kwargs: Any
11 ) -> None: ...