Skip to content

Commit c740bad

Browse files
committed
chore: fix typing
1 parent 6ce23f9 commit c740bad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/extensionState.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ class ExtensionStateTracker {
146146
operation: ExtensionOperation,
147147
command: string,
148148
operationDeniedCallback: () => void,
149-
callback: (...args: unknown[]) => unknown,
149+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
150+
callback: (...args: any[]) => unknown,
150151
thisArg?: unknown,
151152
): vscode.Disposable {
152153
return vscode.commands.registerCommand(

0 commit comments

Comments
 (0)