massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / PyYAML / yaml / events.pyi
1 from typing import Any
2
3 class Event:
4     start_mark: Any
5     end_mark: Any
6     def __init__(self, start_mark=..., end_mark=...) -> None: ...
7
8 class NodeEvent(Event):
9     anchor: Any
10     start_mark: Any
11     end_mark: Any
12     def __init__(self, anchor, start_mark=..., end_mark=...) -> None: ...
13
14 class CollectionStartEvent(NodeEvent):
15     anchor: Any
16     tag: Any
17     implicit: Any
18     start_mark: Any
19     end_mark: Any
20     flow_style: Any
21     def __init__(self, anchor, tag, implicit, start_mark=..., end_mark=..., flow_style=...) -> None: ...
22
23 class CollectionEndEvent(Event): ...
24
25 class StreamStartEvent(Event):
26     start_mark: Any
27     end_mark: Any
28     encoding: Any
29     def __init__(self, start_mark=..., end_mark=..., encoding=...) -> None: ...
30
31 class StreamEndEvent(Event): ...
32
33 class DocumentStartEvent(Event):
34     start_mark: Any
35     end_mark: Any
36     explicit: Any
37     version: Any
38     tags: Any
39     def __init__(self, start_mark=..., end_mark=..., explicit=..., version=..., tags=...) -> None: ...
40
41 class DocumentEndEvent(Event):
42     start_mark: Any
43     end_mark: Any
44     explicit: Any
45     def __init__(self, start_mark=..., end_mark=..., explicit=...) -> None: ...
46
47 class AliasEvent(NodeEvent): ...
48
49 class ScalarEvent(NodeEvent):
50     anchor: Any
51     tag: Any
52     implicit: Any
53     value: Any
54     start_mark: Any
55     end_mark: Any
56     style: Any
57     def __init__(self, anchor, tag, implicit, value, start_mark=..., end_mark=..., style=...) -> None: ...
58
59 class SequenceStartEvent(CollectionStartEvent): ...
60 class SequenceEndEvent(CollectionEndEvent): ...
61 class MappingStartEvent(CollectionStartEvent): ...
62 class MappingEndEvent(CollectionEndEvent): ...