| 312 | //#region editor insets: https://github.com/microsoft/vscode/issues/85682 |
| 313 | |
| 314 | export interface WebviewEditorInset { |
| 315 | readonly editor: TextEditor; |
| 316 | readonly line: number; |
| 317 | readonly height: number; |
| 318 | readonly webview: Webview; |
| 319 | readonly onDidDispose: Event<void>; |
| 320 | dispose(): void; |
| 321 | } |
| 322 | |
| 323 | export namespace window { |
| 324 | export function createWebviewTextEditorInset( |
nothing calls this directly
no outgoing calls
no test coverage detected