mirror of
https://github.com/home-assistant/core.git
synced 2026-06-30 11:16:05 +01:00
e46ad54f51
Co-authored-by: Paulus Schoutsen <balloob@gmail.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: abmantis <974569+abmantis@users.noreply.github.com> Co-authored-by: balloob <1444314+balloob@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
397 B
Python
14 lines
397 B
Python
"""Constants for the Infrared integration."""
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.helpers.entity_component import EntityComponent
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
from .entity import InfraredEmitterEntity, InfraredReceiverEntity
|
|
|
|
DOMAIN: Final = "infrared"
|
|
DATA_COMPONENT: HassKey[
|
|
EntityComponent[InfraredEmitterEntity | InfraredReceiverEntity]
|
|
] = HassKey(DOMAIN)
|