massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / fpdf2 / fpdf / actions.pyi
1 from abc import ABC
2 from typing import Any
3
4 class Action(ABC):
5     def dict_as_string(self) -> None: ...
6
7 class NamedAction(Action):
8     action_name: Any
9     def __init__(self, action_name) -> None: ...
10     def dict_as_string(self): ...
11
12 class GoToAction(Action):
13     dest: Any
14     def __init__(self, dest) -> None: ...
15     def dict_as_string(self): ...
16
17 class GoToRemoteAction(Action):
18     file: Any
19     dest: Any
20     def __init__(self, file, dest) -> None: ...
21     def dict_as_string(self): ...
22
23 class LaunchAction(Action):
24     file: Any
25     def __init__(self, file) -> None: ...
26     def dict_as_string(self): ...