From 9ec8aa3bf91f6bada49b2cb0f2521fc4006b8e54 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sun, 23 Jun 2024 01:53:45 +0300 Subject: [PATCH] Fix JSDocs --- public/scripts/world-info.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/public/scripts/world-info.js b/public/scripts/world-info.js index 51b558256..de6c50884 100644 --- a/public/scripts/world-info.js +++ b/public/scripts/world-info.js @@ -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 = [];