🛜 Removes leftover mqtt

This commit is contained in:
Rune Harlyk
2024-06-28 13:31:34 +02:00
parent e8f48f7427
commit 13e38e8d5e
5 changed files with 1 additions and 39 deletions
-24
View File
@@ -86,12 +86,6 @@ export type LightState = {
led_on: boolean;
};
export type BrokerSettings = {
mqtt_path: string;
name: string;
unique_id: string;
};
export type NTPStatus = {
status: number;
utc_time: string;
@@ -138,24 +132,6 @@ export type StaticSystemInformation = {
export type SystemInformation = Analytics & StaticSystemInformation;
export type MQTTStatus = {
enabled: boolean;
connected: boolean;
client_id: string;
last_error: string;
};
export type MQTTSettings = {
enabled: boolean;
uri: string;
username: string;
password: string;
client_id: string;
keep_alive: number;
clean_session: boolean;
};
export type CameraSettings = {
framesize: number;
quality: number;