chore: Fix config type annotations
All checks were successful
Build and deploy / build (push) Successful in 12m30s
Build and deploy / Deploy container (push) Has been skipped

This commit is contained in:
2025-10-22 03:59:59 +02:00
parent 8a3143a3ea
commit 5947098bfb
18 changed files with 32 additions and 10 deletions

View File

@@ -3,9 +3,9 @@ local devices = require("automation:devices")
local helper = require("config.helper")
local presence = require("config.presence")
--- @type Module
local module = {}
--- @type SetupFunction
function module.setup(mqtt_client)
local light = devices.LightBrightness.new({
name = "Light",
@@ -31,6 +31,7 @@ function module.setup(mqtt_client)
battery_callback = battery.callback,
})
--- @type Module
return {
light,
door,