automation_rs/definitions/definitions.lua
Dreaded_X c090b18f73
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
Started work on generating definitions
2024-04-26 06:07:20 +02:00

28 lines
500 B
Lua

--- @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