massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / treeprocessors.pyi
1 from typing import Any
2
3 from . import util
4
5 def build_treeprocessors(md, **kwargs): ...
6 def isString(s): ...
7
8 class Treeprocessor(util.Processor):
9     def run(self, root) -> Any | None: ...
10
11 class InlineProcessor(Treeprocessor):
12     inlinePatterns: Any
13     ancestors: Any
14     def __init__(self, md) -> None: ...
15     stashed_nodes: Any
16     parent_map: Any
17     def run(self, tree, ancestors: Any | None = ...): ...
18
19 class PrettifyTreeprocessor(Treeprocessor): ...