mirror of
https://github.com/home-assistant/core.git
synced 2026-05-22 16:30:27 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
17 lines
380 B
Python
17 lines
380 B
Python
"""Constants for the image integration."""
|
|
|
|
from typing import TYPE_CHECKING, Final
|
|
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
if TYPE_CHECKING:
|
|
from homeassistant.helpers.entity_component import EntityComponent
|
|
|
|
from . import ImageEntity
|
|
|
|
|
|
DOMAIN: Final = "image"
|
|
DATA_COMPONENT: HassKey[EntityComponent[ImageEntity]] = HassKey(DOMAIN)
|
|
|
|
IMAGE_TIMEOUT: Final = 10
|