20 lines
487 B
Lua
20 lines
487 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias inviteStatus
|
|
---| 1 Invited (also used for non-invitation/non-signup events)
|
|
---| 2 Accepted
|
|
---| 3 Declined
|
|
---| 4 Confirmed
|
|
---| 5 Out
|
|
---| 6 Standby
|
|
---| 7 Signed up
|
|
---| 8 Not signed up
|
|
|
|
---@param monthOffset monthOffset
|
|
---@param day number
|
|
---@param index number
|
|
---@return inviteStatus
|
|
---Returns the player's invite status for an event
|
|
function CalendarContextInviteStatus(monthOffset, day, index) end
|