19 lines
904 B
Lua
19 lines
904 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias calendarType
|
|
---| "GUILD_ANNOUNCEMENT" Guild announcement (does not allow players to sign up)
|
|
---| "GUILD_EVENT" Guild event (allows players to sign up)
|
|
---| "HOLIDAY" World event (e.g. Lunar Festival, Darkmoon Faire, Stranglethorn Fishing Tournament, Call to Arms: Arathi Basin)
|
|
---| "PLAYER" Player-created event or invitation
|
|
---| "RAID_LOCKOUT" Indicates when one of the player's saved instances resets
|
|
---| "RAID_RESET" Indicates scheduled reset times for major raid instances
|
|
---| "SYSTEM" Other server-provided event
|
|
|
|
---@param monthOffset monthOffset
|
|
---@param day number
|
|
---@param index number
|
|
---@return calendarType
|
|
---Returns the type of a calendar event. If all arguments are omitted, uses the event selected by CalendarContextSelectEvent.
|
|
function CalendarContextEventGetCalendarType(monthOffset, day, index) end
|