mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 10:17:51 +00:00
12 lines
242 B
Python
12 lines
242 B
Python
"""Models for PEGELONLINE."""
|
|
|
|
from typing import TypedDict
|
|
|
|
from aiopegelonline import CurrentMeasurement
|
|
|
|
|
|
class PegelOnlineData(TypedDict):
|
|
"""TypedDict for PEGELONLINE Coordinator Data."""
|
|
|
|
current_measurement: CurrentMeasurement
|