add homepage information type pt2

This commit is contained in:
Darius
2026-02-05 00:31:08 +01:00
parent bf580c8a84
commit fd766a822c
3 changed files with 9 additions and 7 deletions

View File

@@ -2,7 +2,8 @@ import { API_HA_DeskPosition } from "./homeassistant";
import { TidalGetCurrent } from "./tidal";
export type FullInformation = {
ha_desk_position: API_HA_DeskPosition;
ha_temp: string;
tidal_current: TidalGetCurrent;
ha_desk_position: API_HA_DeskPosition | null;
ha_temp: string | null;
tidal_current: TidalGetCurrent | null;
tidal_volume: number | null;
}