massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / fpdf2 / fpdf / transitions.pyi
1 from abc import ABC
2 from typing import Any
3
4 class Transition(ABC):
5     def dict_as_string(self) -> None: ...
6
7 class SplitTransition(Transition):
8     dimension: Any
9     direction: Any
10     def __init__(self, dimension, direction) -> None: ...
11     def dict_as_string(self): ...
12
13 class BlindsTransition(Transition):
14     dimension: Any
15     def __init__(self, dimension) -> None: ...
16     def dict_as_string(self): ...
17
18 class BoxTransition(Transition):
19     direction: Any
20     def __init__(self, direction) -> None: ...
21     def dict_as_string(self): ...
22
23 class WipeTransition(Transition):
24     direction: Any
25     def __init__(self, direction) -> None: ...
26     def dict_as_string(self): ...
27
28 class DissolveTransition(Transition):
29     def dict_as_string(self): ...
30
31 class GlitterTransition(Transition):
32     direction: Any
33     def __init__(self, direction) -> None: ...
34     def dict_as_string(self): ...
35
36 class FlyTransition(Transition):
37     dimension: Any
38     direction: Any
39     def __init__(self, dimension, direction: Any | None = ...) -> None: ...
40     def dict_as_string(self): ...
41
42 class PushTransition(Transition):
43     direction: Any
44     def __init__(self, direction) -> None: ...
45     def dict_as_string(self): ...
46
47 class CoverTransition(Transition):
48     direction: Any
49     def __init__(self, direction) -> None: ...
50     def dict_as_string(self): ...
51
52 class UncoverTransition(Transition):
53     direction: Any
54     def __init__(self, direction) -> None: ...
55     def dict_as_string(self): ...
56
57 class FadeTransition(Transition):
58     def dict_as_string(self): ...