Format documentation comments for C_LootHistory and C_ToyBox for consistency

This commit is contained in:
2025-05-18 00:50:47 +02:00
parent 9ee4bb792c
commit 377b3b7aa7
2 changed files with 122 additions and 122 deletions

View File

@@ -4,27 +4,27 @@
---
--- @class C_LootHistory
C_LootHistory = {
--- @return table
--- Returns all encounter information.
GetAllEncounterInfos = function() end,
--- @return table
--- Returns all encounter information.
GetAllEncounterInfos = function() end,
--- @param encounterID number
--- @return table
--- Returns information for a specific encounter.
GetInfoForEncounter = function(encounterID) end,
--- @param encounterID number
--- @return table
--- Returns information for a specific encounter.
GetInfoForEncounter = function(encounterID) end,
--- @return number
--- Returns the loot history time.
GetLootHistoryTime = function() end,
--- @return number
--- Returns the loot history time.
GetLootHistoryTime = function() end,
--- @param encounterID number
--- @return table
--- Returns sorted drops for a specific encounter.
GetSortedDropsForEncounter = function(encounterID) end,
--- @param encounterID number
--- @return table
--- Returns sorted drops for a specific encounter.
GetSortedDropsForEncounter = function(encounterID) end,
--- @param encounterID number
--- @param lootListID number
--- @return table
--- Returns sorted information for a specific drop.
GetSortedInfoForDrop = function(encounterID, lootListID) end,
--- @param encounterID number
--- @param lootListID number
--- @return table
--- Returns sorted information for a specific drop.
GetSortedInfoForDrop = function(encounterID, lootListID) end,
}