UNPKG

342 BTypeScriptView Raw
1import type { Plugin } from './definitions';
2export interface WebViewPlugin extends Plugin {
3 setServerBasePath(options: WebViewPath): Promise<void>;
4 getServerBasePath(): Promise<WebViewPath>;
5 persistServerBasePath(): Promise<void>;
6}
7export interface WebViewPath {
8 path: string;
9}
10export declare const WebView: WebViewPlugin;