Quellcode durchsuchen

fix(types): Add missing type definitions of the methods (#442)

Also made the exported component a class (to add methods) and made him extend Component instead of ComponentType.
Sergei Butko vor 5 Jahren
Ursprung
Commit
54268ff469
1 geänderte Dateien mit 33 neuen und 3 gelöschten Zeilen
  1. 33
    3
      index.d.ts

+ 33
- 3
index.d.ts Datei anzeigen

1
-import { ComponentType } from 'react';
1
+import { Component } from 'react';
2
 // eslint-disable-next-line
2
 // eslint-disable-next-line
3
 import { IOSWebViewProps, AndroidWebViewProps } from './lib/WebViewTypes';
3
 import { IOSWebViewProps, AndroidWebViewProps } from './lib/WebViewTypes';
4
 
4
 
5
-declare const WebView: ComponentType<IOSWebViewProps & AndroidWebViewProps>;
5
+class WebView extends Component<IOSWebViewProps & AndroidWebViewProps> {
6
+    /**
7
+     * Go back one page in the webview's history.
8
+     */
9
+    goBack: () => void;
6
 
10
 
7
-export { WebView };
11
+    /**
12
+     * Go forward one page in the webview's history.
13
+     */
14
+    goForward: () => void;
15
+
16
+    /**
17
+     * Reloads the current page.
18
+     */
19
+    reload: () => void;
20
+
21
+    /**
22
+     * Stop loading the current page.
23
+     */
24
+    stopLoading(): void;
25
+
26
+    /**
27
+     * Extra Native Component Config.
28
+     */
29
+    extraNativeComponentConfig: () => any;
30
+
31
+    /**
32
+     * Executes the JavaScript string.
33
+     */
34
+    injectJavaScript: (script: string) => void;
35
+};
36
+
37
+export {WebView};
8
 export default WebView;
38
 export default WebView;