Fix the rest of lints

This commit is contained in:
Cohee
2025-03-19 21:21:04 +02:00
parent d7dbe736f8
commit a183c8f69a
2 changed files with 2 additions and 6 deletions

View File

@ -5,14 +5,10 @@ import { SlashCommandClosure } from './SlashCommandClosure.js';
import { SlashCommandDebugController } from './SlashCommandDebugController.js';
import { SlashCommandScope } from './SlashCommandScope.js';
/**
* @typedef {import('./SlashCommandParser.js').ParserFlags} ParserFlags
*/
/**
* @typedef {{
* _scope:SlashCommandScope,
* _parserFlags:{ParserFlags},
* _parserFlags:import('./SlashCommandParser.js').ParserFlags,
* _abortController:SlashCommandAbortController,
* _debugController:SlashCommandDebugController,
* _hasUnnamedArgument:boolean,