vscode: fix, fallback to any for cmd type

This commit is contained in:
Veetaha 2020-02-02 22:36:12 +02:00
parent 12d0970f7e
commit 5411d65a7f

View file

@ -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,