-
-
Notifications
You must be signed in to change notification settings - Fork 324
/
Copy pathtypes.py
45 lines (41 loc) · 843 Bytes
/
types.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""Exports common types from:
- :mod:`idom.core.types`
- :mod:`idom.server.types`
"""
from .core.types import (
ComponentConstructor,
ComponentType,
EventHandlerDict,
EventHandlerFunc,
EventHandlerMapping,
EventHandlerType,
ImportSourceDict,
Key,
LayoutType,
VdomAttributes,
VdomAttributesAndChildren,
VdomChild,
VdomChildren,
VdomDict,
VdomJson,
)
from .server.types import ServerFactory, ServerType
__all__ = [
"ComponentConstructor",
"ComponentType",
"EventHandlerDict",
"EventHandlerFunc",
"EventHandlerMapping",
"EventHandlerType",
"ImportSourceDict",
"Key",
"LayoutType",
"VdomAttributes",
"VdomAttributesAndChildren",
"VdomChild",
"VdomChildren",
"VdomDict",
"VdomJson",
"ServerFactory",
"ServerType",
]