fix typehints
This commit is contained in:
parent
94ee7167e0
commit
963e525e07
|
@ -2708,7 +2708,7 @@ const clearCommandProgressDebounced = debounce(clearCommandProgress);
|
||||||
* @prop {boolean} [handleParserErrors] (true) Whether to handle parser errors (show toast on error) or throw.
|
* @prop {boolean} [handleParserErrors] (true) Whether to handle parser errors (show toast on error) or throw.
|
||||||
* @prop {SlashCommandScope} [scope] (null) The scope to be used when executing the commands.
|
* @prop {SlashCommandScope} [scope] (null) The scope to be used when executing the commands.
|
||||||
* @prop {boolean} [handleExecutionErrors] (false) Whether to handle execution errors (show toast on error) or throw
|
* @prop {boolean} [handleExecutionErrors] (false) Whether to handle execution errors (show toast on error) or throw
|
||||||
* @prop {PARSER_FLAG[]} [parserFlags] (null) Parser flags to apply
|
* @prop {{[id:PARSER_FLAG]:boolean}} [parserFlags] (null) Parser flags to apply
|
||||||
* @prop {SlashCommandAbortController} [abortController] (null) Controller used to abort or pause command execution
|
* @prop {SlashCommandAbortController} [abortController] (null) Controller used to abort or pause command execution
|
||||||
* @prop {(done:number, total:number)=>void} [onProgress] (null) Callback to handle progress events
|
* @prop {(done:number, total:number)=>void} [onProgress] (null) Callback to handle progress events
|
||||||
*/
|
*/
|
||||||
|
@ -2716,7 +2716,7 @@ const clearCommandProgressDebounced = debounce(clearCommandProgress);
|
||||||
/**
|
/**
|
||||||
* @typedef ExecuteSlashCommandsOnChatInputOptions
|
* @typedef ExecuteSlashCommandsOnChatInputOptions
|
||||||
* @prop {SlashCommandScope} [scope] (null) The scope to be used when executing the commands.
|
* @prop {SlashCommandScope} [scope] (null) The scope to be used when executing the commands.
|
||||||
* @prop {PARSER_FLAG[]} [parserFlags] (null) Parser flags to apply
|
* @prop {{[id:PARSER_FLAG]:boolean}} [parserFlags] (null) Parser flags to apply
|
||||||
* @prop {boolean} [clearChatInput] (false) Whether to clear the chat input textarea
|
* @prop {boolean} [clearChatInput] (false) Whether to clear the chat input textarea
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue