14 lines
537 B
Lua
14 lines
537 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias modStatus #The player's level of authority for the event, or "" if not applicable
|
|
---| "MODERATOR" The player has been granted moderator status for the event
|
|
---| "CREATOR" The player is the original creator of the event
|
|
|
|
---@param monthOffset monthOffset
|
|
---@param day number
|
|
---@param index number
|
|
---@return modStatus modStatus
|
|
---Returns the player's moderator status for an event
|
|
function CalendarContextInviteModeratorStatus(monthOffset, day, index) end
|