mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
14 lines
350 B
Lua
14 lines
350 B
Lua
-- Dashboard stats module
|
|
|
|
---@class StatsModule
|
|
---@field card fun(props: StatCardProps): UIComponent Create a stat card
|
|
---@field grid fun(stats: StatCardProps[]): UIComponent Create a grid of stat cards
|
|
|
|
---@type StatsModule
|
|
local stats = {
|
|
card = require("stats.card").create,
|
|
grid = require("stats.grid").create
|
|
}
|
|
|
|
return stats
|