mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
22 lines
408 B
Lua
22 lines
408 B
Lua
-- Header actions section
|
|
|
|
---@class Action
|
|
---@field type? string
|
|
---@field label? string
|
|
---@field onClick? string
|
|
|
|
---@class ActionsComponent
|
|
---@field type string
|
|
---@field children? Action[]
|
|
|
|
---@param actions? Action[]
|
|
---@return ActionsComponent
|
|
local function actions_section(actions)
|
|
return {
|
|
type = "actions",
|
|
children = actions or {}
|
|
}
|
|
end
|
|
|
|
return actions_section
|