Home Assistant Unofficial Reference 2024.12.1
types.py
Go to the documentation of this file.
1 """The BTHome Bluetooth integration."""
2 
3 from typing import TYPE_CHECKING
4 
5 from homeassistant.config_entries import ConfigEntry
6 
7 if TYPE_CHECKING:
8  from .coordinator import BTHomePassiveBluetoothProcessorCoordinator
9 
10 type BTHomeConfigEntry = ConfigEntry[BTHomePassiveBluetoothProcessorCoordinator]