From ca6b9c5d63bb23684eb671bd0bfe99fb38a39bc3 Mon Sep 17 00:00:00 2001 From: LenAnderson Date: Fri, 12 Apr 2024 17:27:38 -0400 Subject: [PATCH] fix JSDoc --- public/scripts/slash-commands/SlashCommandParser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/scripts/slash-commands/SlashCommandParser.js b/public/scripts/slash-commands/SlashCommandParser.js index e2917eeaa..b9544ee16 100644 --- a/public/scripts/slash-commands/SlashCommandParser.js +++ b/public/scripts/slash-commands/SlashCommandParser.js @@ -8,9 +8,9 @@ import { SlashCommandScope } from './SlashCommandScope.js'; export class SlashCommandParser { // @ts-ignore - /**@type {Map}*/ commands = {}; + /**@type {Object.}*/ commands = {}; // @ts-ignore - /**@type {Map}*/ helpStrings = {}; + /**@type {Object.}*/ helpStrings = {}; /**@type {Boolean}*/ verifyCommandNames = true; /**@type {String}*/ text; /**@type {String}*/ keptText;