Преглед изворни кода

Make WebViewSourceHtml.baseUrl optional (#454)

Scott Beca пре 5 година
родитељ
комит
0f9b770186
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      src/WebViewTypes.ts

+ 1
- 1
src/WebViewTypes.ts Прегледај датотеку

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