Delete webview input on dispose

This commit is contained in:
Matt Bierner
2018-02-28 00:10:35 -08:00
parent 103d106421
commit b60267b17c
3 changed files with 9 additions and 3 deletions

View File

@@ -355,7 +355,7 @@ export interface MainThreadWebviewsShape extends IDisposable {
export interface ExtHostWebviewsShape {
$onMessage(handle: WebviewHandle, message: any): void;
$onDidChangeActiveWeview(handle: WebviewHandle | undefined): void;
$onDidDisposeWeview(handle: WebviewHandle): void;
$onDidDisposeWeview(handle: WebviewHandle): Thenable<void>;
$onDidChangePosition(handle: WebviewHandle, newPosition: EditorPosition): void;
}