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
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/extensions/sane_lists.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/extensions/sane_lists.pyi
new file mode 100644 (file)
index 0000000..31022c6
--- /dev/null
@@ -0,0 +1,12 @@
+from markdown.blockprocessors import OListProcessor, UListProcessor
+from markdown.extensions import Extension
+
+class SaneOListProcessor(OListProcessor):
+    def __init__(self, parser) -> None: ...
+
+class SaneUListProcessor(UListProcessor):
+    def __init__(self, parser) -> None: ...
+
+class SaneListExtension(Extension): ...
+
+def makeExtension(**kwargs): ...