Files
wow_Meta/api/SecondsToTime.lua
2025-05-04 15:15:00 +02:00

11 lines
572 B
Lua

---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param seconds number
---@param noSeconds boolean
---@param notAbbreviated boolean
---@param maxCount number
---@return string time
---Returns a description of an amount of time in appropriate units. Output includes markup normally hidden when displayed in a FontString (see last example); this markup allows the client to automatically print the singular or plural form of a word depending on the value of the preceding number.
function SecondsToTime(seconds, noSeconds, notAbbreviated, maxCount) end