mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 10:44:52 +00:00
27 lines
669 B
Lua
27 lines
669 B
Lua
-- Power transfer history component
|
|
|
|
---@class HistoryColumnDefinition
|
|
---@field id string
|
|
---@field label string
|
|
---@field type? string
|
|
|
|
---@class TransferHistoryComponent
|
|
---@field type string
|
|
---@field columns HistoryColumnDefinition[]
|
|
|
|
---Returns the transfer history component configuration
|
|
---@return TransferHistoryComponent
|
|
local function transfer_history()
|
|
return {
|
|
type = "transfer_history",
|
|
columns = {
|
|
{ id = "date", label = "Date", type = "date" },
|
|
{ id = "from", label = "From User" },
|
|
{ id = "to", label = "To User" },
|
|
{ id = "reason", label = "Reason" }
|
|
}
|
|
}
|
|
end
|
|
|
|
return transfer_history
|