diff --git a/src/vs/workbench/workbench.web.api.ts b/src/vs/workbench/workbench.web.api.ts index 9aeaec12a62fbccab72ccf21224bf75ed1711da0..67f20463ebb29638bd137e7e360c7c735abcf5f3 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; } }