Skip to content

Commit 5411d65

Browse files
author
Veetaha
committed
vscode: fix, fallback to any for cmd type
1 parent 12d0970 commit 5411d65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/ctx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class Ctx {
8686
}
8787
}
8888

89-
export type Cmd = (...args: unknown[]) => unknown;
89+
export type Cmd = (...args: any[]) => unknown;
9090

9191
export async function sendRequestWithRetry<R>(
9292
client: lc.LanguageClient,

0 commit comments

Comments
 (0)