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
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Pygments/pygments/styles/__init__.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Pygments/pygments/styles/__init__.pyi
new file mode 100644 (file)
index 0000000..842f507
--- /dev/null
@@ -0,0 +1,13 @@
+from collections.abc import Iterator, Mapping
+from typing import Any
+
+from pygments.style import StyleMeta
+from pygments.util import ClassNotFound as ClassNotFound
+
+STYLE_MAP: Mapping[str, str]
+
+def get_style_by_name(name) -> StyleMeta: ...
+def get_all_styles() -> Iterator[str]: ...
+
+# Having every style class here doesn't seem to be worth it
+def __getattr__(name: str) -> Any: ...