UNPKG

coc-webview

Version:

Vscode webview ported to coc.nvim

8 lines (7 loc) 324 B
import { WebviewOptions, WebviewPanel } from './api.types'; declare type WebviewPanelOpenOptions = { openURL: boolean; routeName: string; }; export declare function createWebviewPanel(viewType: string, title: string, openOptions: WebviewPanelOpenOptions, options?: WebviewOptions): Promise<WebviewPanel>; export {};