2021-05-03 09:45:57 +02:00
|
|
|
/* eslint-disable no-use-before-define */
|
|
|
|
|
|
|
|
|
|
export type TopicType = 'config' | 'state' | 'availability' | 'set';
|
|
|
|
|
export type TOPIC_TYPES = { [key: string]: TopicType };
|
|
|
|
|
|
2025-09-12 08:36:02 +02:00
|
|
|
export type MqttType = 'light' | 'scene' | 'switch' | 'device_automation' | 'sensor' | 'extender';
|
2021-05-03 09:45:57 +02:00
|
|
|
export type MQTT_TYPES = { [key: string]: MqttType };
|