mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 02:37:50 +00:00
13 lines
248 B
Python
13 lines
248 B
Python
"""Type definitions for 1-Wire integration."""
|
|
from __future__ import annotations
|
|
|
|
from typing import TypedDict
|
|
|
|
|
|
class OWServerDeviceDescription(TypedDict):
|
|
"""OWServer device description class."""
|
|
|
|
path: str
|
|
family: str
|
|
type: str
|