mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 15:08:10 +01:00
18 lines
429 B
Python
18 lines
429 B
Python
"""This helper module tracks commonly used types in the esphome python codebase."""
|
|
from typing import Union
|
|
|
|
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]
|