massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / extensions / sane_lists.pyi
1 from markdown.blockprocessors import OListProcessor, UListProcessor
2 from markdown.extensions import Extension
3
4 class SaneOListProcessor(OListProcessor):
5     def __init__(self, parser) -> None: ...
6
7 class SaneUListProcessor(UListProcessor):
8     def __init__(self, parser) -> None: ...
9
10 class SaneListExtension(Extension): ...
11
12 def makeExtension(**kwargs): ...