Ignore any in CommandManager.ts

This commit is contained in:
Robert
2024-02-13 14:45:30 +00:00
parent a4294e2e28
commit 334dbf57ef

View File

@@ -10,6 +10,7 @@ import type { Disposable } from "./Disposable";
/** /**
* A command function is a completely untyped command. * A command function is a completely untyped command.
*/ */
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type CommandFunction = (...args: any[]) => Promise<unknown>; export type CommandFunction = (...args: any[]) => Promise<unknown>;
/** /**