Initial commit

This commit is contained in:
2024-12-16 13:13:08 +01:00
commit c8d4f32d5d
3093 changed files with 18304 additions and 0 deletions

9
api/SecondsToTime.lua Normal file
View File

@@ -0,0 +1,9 @@
---@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