Files
wow_Meta/api/SecondsToTime.lua
2025-05-04 14:35:26 +02:00

10 lines
563 B
Lua

---@diagnostic disable: missing-return, lowercase-global
---@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