UNPKG

307 BTypeScriptView Raw
1interface WebviewHtmlDevOptions {
2 /**
3 * local server url
4 */
5 serverUrl: string;
6}
7/**
8 *
9 * @param options serverUrl string or object options
10 */
11declare function getHtml(options: string | WebviewHtmlDevOptions): string;
12
13export { type WebviewHtmlDevOptions, getHtml as default, getHtml };