Use standard 'postMessage' name

This commit is contained in:
Matt Bierner
2018-04-17 16:22:44 -07:00
parent fbd3a08369
commit cdd9a731f9
3 changed files with 4 additions and 4 deletions

View File

@@ -355,7 +355,7 @@ export interface MainThreadWebviewsShape extends IDisposable {
$reveal(handle: WebviewPanelHandle, column: EditorPosition): void;
$setTitle(handle: WebviewPanelHandle, value: string): void;
$setHtml(handle: WebviewPanelHandle, value: string): void;
$sendMessage(handle: WebviewPanelHandle, value: any): Thenable<boolean>;
$postMessage(handle: WebviewPanelHandle, value: any): Thenable<boolean>;
$registerSerializer(viewType: string): void;
$unregisterSerializer(viewType: string): void;