Home Assistant Unofficial Reference 2024.12.1
types.py
Go to the documentation of this file.
1 """Support for Nexia / Trane XL Thermostats."""
2 
3 from homeassistant.config_entries import ConfigEntry
4 
5 from .coordinator import NexiaDataUpdateCoordinator
6 
7 type NexiaConfigEntry = ConfigEntry[NexiaDataUpdateCoordinator]