wire-up dispose calls, #9384

This commit is contained in:
Johannes Rieken
2016-08-29 18:09:29 +02:00
parent 0ed5aef173
commit a27782ed13
6 changed files with 122 additions and 2 deletions

View File

@@ -78,6 +78,7 @@ function ni() { return new Error('Not implemented'); }
export abstract class MainThreadCommandsShape {
$registerCommand(id: string): TPromise<any> { throw ni(); }
$unregisterCommand(id: string): TPromise<any> { throw ni(); }
$executeCommand<T>(id: string, args: any[]): Thenable<T> { throw ni(); }
$getCommands(): Thenable<string[]> { throw ni(); }
}