Allow registerWebviewEditorProvider to pass in a set of initial webview options

Fixes #82128
This commit is contained in:
Matt Bierner
2019-10-16 11:45:28 -07:00
parent 881e92645e
commit 721886ce10
7 changed files with 23 additions and 11 deletions

View File

@@ -556,7 +556,7 @@ export interface MainThreadWebviewsShape extends IDisposable {
$registerSerializer(viewType: string): void;
$unregisterSerializer(viewType: string): void;
$registerEditorProvider(viewType: string, extensionId: ExtensionIdentifier, extensionLocation: UriComponents): void;
$registerEditorProvider(viewType: string, extensionId: ExtensionIdentifier, extensionLocation: UriComponents, options: modes.IWebviewPanelOptions): void;
$unregisterEditorProvider(viewType: string): void;
}