瀏覽代碼

Declare WebView class as a generic class

iou90kant 4 年之前
父節點
當前提交
f672af96e8
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      index.d.ts

+ 1
- 1
index.d.ts 查看文件

@@ -6,7 +6,7 @@ export { FileDownload, WebViewMessageEvent, WebViewNavigation } from "./lib/WebV
6 6
 
7 7
 export type WebViewProps = IOSWebViewProps & AndroidWebViewProps;
8 8
 
9
-declare class WebView extends Component<WebViewProps> {
9
+declare class WebView<P> extends Component<WebViewProps & P> {
10 10
     /**
11 11
      * Go back one page in the webview's history.
12 12
      */