Files
dpu-shared/dist/homepage.d.ts
2026-02-06 19:59:52 +01:00

14 lines
497 B
TypeScript

import type { GristRecord_PersonalGoals } from "./grist";
import type { API_HA_DeskPosition } from "./homeassistant";
import type { TidalGetCurrent } from "./tidal";
export type FullInformation = {
ha_desk_position: API_HA_DeskPosition | null;
ha_temp: string | null;
tidal_current: TidalGetCurrent | null;
grist_personal_goals: GristRecord_PersonalGoals | null;
};
export type ComponentUpdate = {
component: string;
data: unknown;
};
//# sourceMappingURL=homepage.d.ts.map