massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Markdown / markdown / extensions / wikilinks.pyi
1 from typing import Any
2
3 from markdown.extensions import Extension
4 from markdown.inlinepatterns import InlineProcessor
5
6 def build_url(label, base, end): ...
7
8 class WikiLinkExtension(Extension):
9     def __init__(self, **kwargs) -> None: ...
10     md: Any
11
12 class WikiLinksInlineProcessor(InlineProcessor):
13     config: Any
14     def __init__(self, pattern, config) -> None: ...
15
16 def makeExtension(**kwargs): ...