mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
22 lines
509 B
Lua
22 lines
509 B
Lua
-- Supergod toolbar component
|
|
|
|
---@class ToolbarComponent
|
|
---@field type string
|
|
---@field actions table[]
|
|
---@field showAllTenants boolean
|
|
---@field showSystemMetrics boolean
|
|
|
|
---Returns the supergod toolbar component configuration
|
|
---@param actions? table[]
|
|
---@return ToolbarComponent
|
|
local function supergod_toolbar(actions)
|
|
return {
|
|
type = "supergod_toolbar",
|
|
actions = actions or {},
|
|
showAllTenants = true,
|
|
showSystemMetrics = true
|
|
}
|
|
end
|
|
|
|
return supergod_toolbar
|