Fix JSDocs

This commit is contained in:
Cohee 2024-06-23 01:53:45 +03:00
parent 7875a65b44
commit 9ec8aa3bf9
1 changed files with 8 additions and 4 deletions

View File

@ -348,22 +348,26 @@ class WorldInfoTimedEvents {
#entryHashCache = new WeakMap();
/**
* @type {string[]} Array of chat messages
* Array of chat messages
* @type {string[]}
*/
#chat = [];
/**
* @type {WIScanEntry[]} Array of entries
* Array of entries
* @type {WIScanEntry[]}
*/
#entries = [];
/**
* @type {WIScanEntry[]} Array of entries that need to be activated due to sticky
* Array of entries that need to be activated due to sticky
* @type {WIScanEntry[]}
*/
#stickyActivations = [];
/**
* @type {WIScanEntry[]} Array of entries that need to be suppressed due to cooldown
* Array of entries that need to be suppressed due to cooldown
* @type {WIScanEntry[]}
*/
#cooldownSuppressions = [];