massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / treeprocessors.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/treeprocessors.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/treeprocessors.pyi
new file mode 100644 (file)
index 0000000..26cd06b
--- /dev/null
@@ -0,0 +1,19 @@
+from typing import Any
+
+from . import util
+
+def build_treeprocessors(md, **kwargs): ...
+def isString(s): ...
+
+class Treeprocessor(util.Processor):
+    def run(self, root) -> Any | None: ...
+
+class InlineProcessor(Treeprocessor):
+    inlinePatterns: Any
+    ancestors: Any
+    def __init__(self, md) -> None: ...
+    stashed_nodes: Any
+    parent_map: Any
+    def run(self, tree, ancestors: Any | None = ...): ...
+
+class PrettifyTreeprocessor(Treeprocessor): ...