mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 15:24:56 +00:00
16 lines
472 B
Lua
16 lines
472 B
Lua
---@class AdminToolbarComponent
|
|
---@field type string Component type identifier
|
|
---@field actions table[] Toolbar action buttons
|
|
|
|
---Creates an admin toolbar component with action buttons
|
|
---@param actions table[]? Action buttons to display in toolbar
|
|
---@return AdminToolbarComponent Admin toolbar component with actions
|
|
local function admin_toolbar(actions)
|
|
return {
|
|
type = "admin_toolbar",
|
|
actions = actions or {}
|
|
}
|
|
end
|
|
|
|
return admin_toolbar
|