Home Assistant Unofficial Reference 2024.12.1
types.py
Go to the documentation of this file.
1 """Support for Oncue types."""
2 
3 from __future__ import annotations
4 
5 from aiooncue import OncueDevice
6 
7 from homeassistant.config_entries import ConfigEntry
8 from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
9 
10 type OncueConfigEntry = ConfigEntry[DataUpdateCoordinator[dict[str, OncueDevice]]]