Interfaces for modal & mqtt telemetry messages

This commit is contained in:
2023-07-29 13:37:41 +02:00
parent c75d887268
commit 10eedab049
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
export default interface IModal {
opens: any
data: any
}

View File

@@ -0,0 +1,17 @@
export interface IGatewayTelemetry {
gateway_name: string;
t: string;
temperature: string;
battery_level?: string;
last_sync?: string;
}
export interface IHiveTelemetry {
hive_name: string;
t: string;
temperature: string;
humidity?: string;
pressure?: string;
weight?: string;
battery_level?: string;
}