Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-17 21:38:41 +01:00
parent 2b3ee60633
commit 079227ee29
13 changed files with 127 additions and 3 deletions

25
dist/homeassistant.d.ts vendored Normal file
View File

@@ -0,0 +1,25 @@
export type HomeAssistantEntity = {
entity_id: string;
state: string;
attributes: {
state_class?: string;
unit_of_measurement?: string;
icon?: string;
friendly_name?: string;
[key: string]: unknown;
};
last_changed: string;
last_reported: string;
last_updated: string;
context: {
id: string;
parent_id: string | null;
user_id: string | null;
};
};
export interface HomeAssistantDeskPositionResult {
raw: HomeAssistantEntity;
asBoolean: boolean;
asText: () => string;
}
//# sourceMappingURL=homeassistant.d.ts.map