Skip to content

Commit 8654367

Browse files
committed
refactor(vscode): update tsserver response type
1 parent 5019f99 commit 8654367

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/vscode/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function launch(context: vscode.ExtensionContext) {
129129
);
130130

131131
client.onNotification('tsserver/request', async ([seq, command, args]) => {
132-
const res = await vscode.commands.executeCommand<{ body: { result: unknown } } | undefined>(
132+
const res = await vscode.commands.executeCommand<{ body: unknown } | undefined>(
133133
'typescript.tsserverRequest',
134134
command,
135135
args,

0 commit comments

Comments
 (0)