Explorar el Código

Declare WebView class as a generic class

iou90kant hace 4 años
padre
commit
f672af96e8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      index.d.ts

+ 1
- 1
index.d.ts Ver fichero

@@ -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
      */