Started work on generating definitions
Some checks failed
Build and deploy automation_rs / Build automation_rs (push) Failing after 1m52s
Build and deploy automation_rs / Build Docker image (push) Has been skipped
Build and deploy automation_rs / Deploy Docker container (push) Has been skipped

This commit is contained in:
2024-04-26 06:07:20 +02:00
parent 8762a680a8
commit c090b18f73
4 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
--- @meta
automation = {}
--- @class Device
--- @class Config
--- @class DeviceManager
automation.device_manager = {}
--- @class MqttClient
automation.mqtt_client = {}
--- @param identifier string
--- @param config Config
--- @return Device
function automation.device_manager:create(identifier, config) end
--- @class DebugBridge
DebugBridge = {}
--- @class DebugBridgeConfig
--- @field topic string
--- @param config DebugBridgeConfig
--- @return Config
function DebugBridge.new(config) end