massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / commonmark / commonmark / node.pyi
1 from typing import Any
2
3 reContainer: Any
4
5 def is_container(node): ...
6
7 class NodeWalker:
8     current: Any
9     root: Any
10     entering: bool
11     def __init__(self, root) -> None: ...
12     def __next__(self): ...
13     next: Any
14     def __iter__(self): ...
15     def nxt(self): ...
16     def resume_at(self, node, entering) -> None: ...
17
18 class Node:
19     t: Any
20     parent: Any
21     first_child: Any
22     last_child: Any
23     prv: Any
24     nxt: Any
25     sourcepos: Any
26     last_line_blank: bool
27     last_line_checked: bool
28     is_open: bool
29     string_content: str
30     literal: Any
31     list_data: Any
32     info: Any
33     destination: Any
34     title: Any
35     is_fenced: bool
36     fence_char: Any
37     fence_length: int
38     fence_offset: Any
39     level: Any
40     on_enter: Any
41     on_exit: Any
42     def __init__(self, node_type, sourcepos) -> None: ...
43     def pretty(self) -> None: ...
44     def normalize(self) -> None: ...
45     def is_container(self): ...
46     def append_child(self, child) -> None: ...
47     def prepend_child(self, child) -> None: ...
48     def unlink(self) -> None: ...
49     def insert_after(self, sibling) -> None: ...
50     def insert_before(self, sibling) -> None: ...
51     def walker(self): ...