Make WebViewSourceHtml.baseUrl optional (#454)

This commit is contained in:
Scott Beca 2019-03-26 21:07:51 +11:00 committed by Thibault Malbranche
parent f01618e11a
commit 0f9b770186
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ export interface WebViewSourceHtml {
/**
* The base URL to be used for any relative links in the HTML.
*/
baseUrl: string;
baseUrl?: string;
}
export type WebViewSource = WebViewSourceUri | WebViewSourceHtml;