mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 08:14:57 +00:00
21 lines
456 B
Lua
21 lines
456 B
Lua
-- Level 5 Supergod panel toolbar
|
|
|
|
---@class ToolbarComponent
|
|
---@field type string
|
|
---@field actions table[]
|
|
---@field showAllTenants boolean
|
|
---@field showSystemMetrics boolean
|
|
|
|
---@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
|