massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / extensions / tables.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/extensions/tables.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Markdown/markdown/extensions/tables.pyi
new file mode 100644 (file)
index 0000000..2250cae
--- /dev/null
@@ -0,0 +1,19 @@
+from typing import Any
+
+from markdown.blockprocessors import BlockProcessor
+from markdown.extensions import Extension
+
+PIPE_NONE: int
+PIPE_LEFT: int
+PIPE_RIGHT: int
+
+class TableProcessor(BlockProcessor):
+    RE_CODE_PIPES: Any
+    RE_END_BORDER: Any
+    border: bool = ...
+    separator: str = ...
+    def __init__(self, parser) -> None: ...
+
+class TableExtension(Extension): ...
+
+def makeExtension(**kwargs): ...