mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 18:24:53 +00:00
15 lines
393 B
Lua
15 lines
393 B
Lua
-- Sidebar module
|
|
|
|
---@class SidebarModule
|
|
---@field render fun(props: SidebarProps): UIComponent
|
|
---@field header fun(props: SidebarProps): UIComponent
|
|
---@field item fun(item: SidebarItem, currentPath: string?): UIComponent
|
|
|
|
local M = {
|
|
render = require("sidebar.render").render,
|
|
header = require("sidebar.header").header,
|
|
item = require("sidebar.item").item
|
|
}
|
|
|
|
return M
|