17 lines
676 B
Lua
17 lines
676 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias eventType
|
|
---| 1 Raid dungeon
|
|
---| 2 Five-player dungeon
|
|
---| 3 PvP event
|
|
---| 4 Meeting
|
|
---| 5 Other event
|
|
|
|
---@param eventType eventType
|
|
---@param expansion number Expansion to which the instance belongs; localized names can be found in the constants EXPANSION_NAME0, EXPANSION_NAME1, etc. (number)
|
|
---@return string name
|
|
---@return string icon #Unique part of the path to the instance's icon texture; for the full path, prepend with "Interface\LFGFrame\LFGIcon-"
|
|
---Returns a list of instance names and icons for dungeon or raid events
|
|
function CalendarEventGetTextures(eventType, expansion) end
|