Fix the rest of lints
| @@ -6,7 +6,7 @@ import { getRegexedString, regex_placement } from './extensions/regex/engine.js' | |||
| 6 | import { getCurrentLocale, t, translate } from './i18n.js'; | 6 | import { getCurrentLocale, t, translate } from './i18n.js'; |
| 7 | import { MacrosParser } from './macros.js'; | 7 | import { MacrosParser } from './macros.js'; |
| 8 | import { chat_completion_sources, getChatCompletionModel, oai_settings } from './openai.js'; | 8 | import { chat_completion_sources, getChatCompletionModel, oai_settings } from './openai.js'; |
| 9 | import { POPUP_RESULT, Popup } from './popup.js'; | 9 | import { Popup } from './popup.js'; |
| 10 | import { performFuzzySearch, power_user } from './power-user.js'; | 10 | import { performFuzzySearch, power_user } from './power-user.js'; |
| 11 | import { getPresetManager } from './preset-manager.js'; | 11 | import { getPresetManager } from './preset-manager.js'; |
| 12 | import { SlashCommand } from './slash-commands/SlashCommand.js'; | 12 | import { SlashCommand } from './slash-commands/SlashCommand.js'; |
| @@ -6,13 +6,9 @@ import { SlashCommandDebugController } from './SlashCommandDebugController.js'; | |||
| 6 | import { SlashCommandScope } from './SlashCommandScope.js'; | 6 | import { SlashCommandScope } from './SlashCommandScope.js'; |
| 7 | 7 | ||
| 8 | /** | 8 | /** |
| 9 | * @typedef {import('./SlashCommandParser.js').ParserFlags} ParserFlags | ||
| 10 | */ | ||
| 11 | |||
| 12 | /** | ||
| 13 | * @typedef {{ | 9 | * @typedef {{ |
| 14 | * _scope:SlashCommandScope, | 10 | * _scope:SlashCommandScope, |
| 15 | * _parserFlags:{ParserFlags}, | 11 | * _parserFlags:import('./SlashCommandParser.js').ParserFlags, |
| 16 | * _abortController:SlashCommandAbortController, | 12 | * _abortController:SlashCommandAbortController, |
| 17 | * _debugController:SlashCommandDebugController, | 13 | * _debugController:SlashCommandDebugController, |
| 18 | * _hasUnnamedArgument:boolean, | 14 | * _hasUnnamedArgument:boolean, |