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,10 +1,7 @@
---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param monthOffset 1
---@param -1
---@param 0
---@param 1
---@param day number
---@param monthOffset monthOffset
---@param day number
---Pastes a copied event into a given date. Does nothing if no event has been copied via CalendarContextEventCopy.
function CalendarContextEventPaste(monthOffset, -1, 0, 1, day) end
function CalendarContextEventPaste(monthOffset, day) end