fix JSDoc

This commit is contained in:
LenAnderson
2024-04-12 17:27:38 -04:00
parent adbd88aa79
commit ca6b9c5d63

View File

@ -8,9 +8,9 @@ import { SlashCommandScope } from './SlashCommandScope.js';
export class SlashCommandParser {
// @ts-ignore
/**@type {Map<String, SlashCommand>}*/ commands = {};
/**@type {Object.<string, SlashCommand>}*/ commands = {};
// @ts-ignore
/**@type {Map<String, String>}*/ helpStrings = {};
/**@type {Object.<string, string>}*/ helpStrings = {};
/**@type {Boolean}*/ verifyCommandNames = true;
/**@type {String}*/ text;
/**@type {String}*/ keptText;