mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
vscode: fix, fallback to any for cmd type
This commit is contained in:
parent
12d0970f7e
commit
5411d65a7f
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ export class Ctx {
|
|||
}
|
||||
}
|
||||
|
||||
export type Cmd = (...args: unknown[]) => unknown;
|
||||
export type Cmd = (...args: any[]) => unknown;
|
||||
|
||||
export async function sendRequestWithRetry<R>(
|
||||
client: lc.LanguageClient,
|
||||
|
|
Loading…
Reference in a new issue