Show at a specific position

This commit is contained in:
Matt Bierner
2018-04-06 14:15:07 -07:00
parent c810428647
commit 89d6db5c86
5 changed files with 19 additions and 16 deletions

View File

@@ -360,7 +360,7 @@ export interface MainThreadWebviewsShape extends IDisposable {
$registerSerializer(viewType: string): void;
$unregisterSerializer(viewType: string): void;
$showWebviewWidget(handle: WebviewHandle, editorId: string, lineNumber: number, viewType: string, options: vscode.WebviewOptions): void;
$showWebviewWidget(handle: WebviewHandle, editorId: string, position: IPosition, viewType: string, options: vscode.WebviewOptions): void;
}
export interface ExtHostWebviewsShape {