mirror of
https://github.com/esphome/esphome.git
synced 2024-11-14 02:58:11 +01:00
18 lines
441 B
Python
18 lines
441 B
Python
"""This helper module tracks commonly used types in the esphome python codebase."""
|
|
from typing import Dict, Union, List
|
|
|
|
from esphome.core import ID, Lambda, EsphomeCore
|
|
|
|
ConfigFragmentType = Union[
|
|
str,
|
|
int,
|
|
float,
|
|
None,
|
|
Dict[Union[str, int], "ConfigFragmentType"],
|
|
List["ConfigFragmentType"],
|
|
ID,
|
|
Lambda,
|
|
]
|
|
ConfigType = Dict[str, ConfigFragmentType]
|
|
CoreType = EsphomeCore
|
|
ConfigPathType = Union[str, int]
|