massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Pygments / pygments / styles / __init__.pyi
1 from collections.abc import Iterator, Mapping
2 from typing import Any
3
4 from pygments.style import StyleMeta
5 from pygments.util import ClassNotFound as ClassNotFound
6
7 STYLE_MAP: Mapping[str, str]
8
9 def get_style_by_name(name) -> StyleMeta: ...
10 def get_all_styles() -> Iterator[str]: ...
11
12 # Having every style class here doesn't seem to be worth it
13 def __getattr__(name: str) -> Any: ...