Files
metabuilder/packages/dashboard/seed/scripts/stats/init.lua
2025-12-30 14:19:46 +00:00

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