diff options
author | Veetaha <[email protected]> | 2020-02-02 20:36:12 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-02-02 20:36:12 +0000 |
commit | 5411d65a7f8b86da46aeef23bb2c707408766135 (patch) | |
tree | e60dd89603c9a80ce888538a4c815c054aa8cea0 | |
parent | 12d0970f7e4c4d7f91cccb12525fceea3c4c0669 (diff) |
vscode: fix, fallback to any for cmd type
-rw-r--r-- | editors/code/src/ctx.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts index aae2c5f90..2d703af58 100644 --- a/editors/code/src/ctx.ts +++ b/editors/code/src/ctx.ts | |||
@@ -86,7 +86,7 @@ export class Ctx { | |||
86 | } | 86 | } |
87 | } | 87 | } |
88 | 88 | ||
89 | export type Cmd = (...args: unknown[]) => unknown; | 89 | export type Cmd = (...args: any[]) => unknown; |
90 | 90 | ||
91 | export async function sendRequestWithRetry<R>( | 91 | export async function sendRequestWithRetry<R>( |
92 | client: lc.LanguageClient, | 92 | client: lc.LanguageClient, |