Refactor calendar context functions to use parameter aliases for improved clarity

This commit is contained in:
2025-05-18 00:50:42 +02:00
parent 5f352cbfbe
commit 9ee4bb792c
13 changed files with 72 additions and 104 deletions

View File

@@ -1,12 +1,8 @@
---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param monthOffset CalendarContextSelectEvent
---@param -1
---@param 0
---@param 1
---@param nil CalendarContextSelectEvent
---@param day number
---@param index number
---@param monthOffset monthOffset
---@param day number
---@param index number
---Reports an event invitation as spam
function CalendarContextEventComplain(monthOffset, -1, 0, 1, nil, day, index) end
function CalendarContextEventComplain(monthOffset, day, index) end