mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
17 lines
325 B
Lua
17 lines
325 B
Lua
-- Code editor toolbar
|
|
|
|
---@class ToolbarConfig
|
|
---@field type string
|
|
---@field actions string[]
|
|
|
|
---@param actions? string[]
|
|
---@return ToolbarConfig
|
|
local function toolbar(actions)
|
|
return {
|
|
type = "editor_toolbar",
|
|
actions = actions or { "save", "undo", "redo", "format" }
|
|
}
|
|
end
|
|
|
|
return toolbar
|