eng - less TPromise in extHostCommands

This commit is contained in:
Johannes Rieken
2017-12-11 14:07:36 +01:00
parent 7e71229ce8
commit 9faf001bad
3 changed files with 8 additions and 9 deletions

View File

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