(appId: string)
| 104 | } |
| 105 | |
| 106 | public stop(appId: string): Thenable<UnknownResponse> { |
| 107 | return this.sendRequest("app.stop", { appId }); |
| 108 | } |
| 109 | |
| 110 | public callServiceExtension(appId: string, methodName: string, params: any): Promise<any> { |
| 111 | return this.sendRequest("app.callServiceExtension", { appId, methodName, params }); |
no outgoing calls
no test coverage detected