mirror of
https://github.com/elisspace/core.git
synced 2026-09-12 22:18:36 +00:00
14 lines
265 B
Python
14 lines
265 B
Python
"""Type definitions for Airly integration."""
|
|
from __future__ import annotations
|
|
|
|
from typing import TypedDict
|
|
|
|
|
|
class SensorDescription(TypedDict):
|
|
"""Sensor description class."""
|
|
|
|
device_class: str | None
|
|
icon: str | None
|
|
label: str
|
|
unit: str
|