From 00409b06b9c1821258fe2974d13b9eb65c9d535b Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Tue, 14 Apr 2020 12:00:13 +0200 Subject: [PATCH] web - :lipstick: command API --- src/vs/workbench/workbench.web.api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/workbench.web.api.ts b/src/vs/workbench/workbench.web.api.ts index 9aeaec12a62..67f20463ebb 100644 --- a/src/vs/workbench/workbench.web.api.ts +++ b/src/vs/workbench/workbench.web.api.ts @@ -209,7 +209,7 @@ interface IWorkbench { * @param rest Parameters passed to the command function. * @return A promise that resolves to the returned value of the given command. */ - executeCommand(command: string, ...rest: any[]): Promise; + executeCommand(command: string, ...args: any[]): Promise; } } -- GitLab