Files
automation_rs/definitions/config.lua
Dreaded_X 64c4a47c6f
All checks were successful
Build and deploy / build (push) Successful in 11m12s
Build and deploy / Deploy container (push) Has been skipped
feat: Use ActionCallback for schedule
This has two advantages:
- Each schedule entry can take either a single function or table of
  functions.
- We get a better type definition.
2025-10-19 02:43:24 +02:00

15 lines
344 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 DeviceInterface[]?
---@field schedule table<string, fun() | fun()[]>?
local Config