massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / extensions / def_list.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/extensions/def_list.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/extensions/def_list.pyi
new file mode 100644 (file)
index 0000000..187003c
--- /dev/null
@@ -0,0 +1,13 @@
+from typing import Pattern
+
+from markdown.blockprocessors import BlockProcessor, ListIndentProcessor
+from markdown.extensions import Extension
+
+class DefListProcessor(BlockProcessor):
+    RE: Pattern[str]
+    NO_INDENT_RE: Pattern[str]
+
+class DefListIndentProcessor(ListIndentProcessor): ...
+class DefListExtension(Extension): ...
+
+def makeExtension(**kwargs): ...