This commit is contained in:
Johannes Rieken
2017-11-02 11:04:49 +01:00
parent b4d7531cab
commit c8a8fc7ddd
3 changed files with 24 additions and 5 deletions

View File

@@ -429,7 +429,7 @@ export interface MainThreadWindowShape extends IDisposable {
// -- extension host
export interface ExtHostCommandsShape {
$executeContributedCommand<T>(id: string, ...args: any[]): Thenable<T>;
$executeContributedCommand<T>(id: string, ...args: any[]): Thenable<void>;
$getContributedCommandHandlerDescriptions(): TPromise<{ [id: string]: string | ICommandHandlerDescription }>;
}