Execute onClickCommand on Main side

This commit is contained in:
Pine Wu
2016-11-01 11:44:44 -07:00
parent 31960a77d3
commit 84dd43b63a
5 changed files with 22 additions and 11 deletions

View File

@@ -289,7 +289,7 @@ export abstract class ExtHostEditorsShape {
export abstract class ExtHostTreeExplorersShape {
$provideRootNode(providerId: string): TPromise<InternalTreeExplorerNode> { throw ni(); };
$resolveChildren(providerId: string, node: InternalTreeExplorerNode): TPromise<InternalTreeExplorerNode[]> { throw ni(); }
$executeCommand(providerId: string, node: InternalTreeExplorerNode): TPromise<void> { throw ni(); }
$getInternalCommand(providerId: string, node: InternalTreeExplorerNode): TPromise<modes.Command> { throw ni(); }
}
export abstract class ExtHostExtensionServiceShape {