Files
automation_rs/definitions/config.lua
Dreaded_X c0db454d1a
All checks were successful
Build and deploy / build (push) Successful in 11m49s
Build and deploy / Deploy container (push) Has been skipped
WIP
2025-10-19 04:03:20 +02:00

18 lines
436 B
Lua

-- DO NOT MODIFY, FILE IS AUTOMATICALLY GENERATED
---@meta
---@class FulfillmentConfig
---@field openid_url string
---@field ip string?
---@field port integer?
local FulfillmentConfig
---@class Config
---@field fulfillment FulfillmentConfig
---@field devices Devices?
---@field mqtt AsyncClient
---@field schedule table<string, fun() | fun()[]>?
local Config
---@alias Devices (DeviceInterface | fun(client: AsyncClient): Devices)[]