Add doAction API call for ModelView (#10345)

* Add doAction API call for ModelView

* cleanup
This commit is contained in:
Charles Gagnon
2020-05-12 10:47:20 -07:00
committed by GitHub
parent ff848b5903
commit 3fa0deed71
13 changed files with 70 additions and 8 deletions

View File

@@ -739,6 +739,7 @@ export interface MainThreadModelViewShape extends IDisposable {
$setDataProvider(handle: number, componentId: string): Thenable<void>;
$refreshDataProvider(handle: number, componentId: string, item?: any): Thenable<void>;
$focus(handle: number, componentId: string): Thenable<void>;
$doAction(handle: number, componentId: string, action: string, ...args: any[]): Thenable<void>;
}
export interface ExtHostObjectExplorerShape {