Browse Source

feat(types): added missing types (#157)

Chet Corcos 5 years ago
parent
commit
f70700df24
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      typings/index.d.ts

+ 5
- 0
typings/index.d.ts View File

199
    * backward compatible.
199
    * backward compatible.
200
    */
200
    */
201
   hideKeyboardAccessoryView?: boolean;
201
   hideKeyboardAccessoryView?: boolean;
202
+  /**
203
+   * If true, this will be able horizontal swipe gestures when using the WKWebView. The default value is `false`.
204
+   */
205
+  allowsBackForwardNavigationGestures?: boolean
202
 }
206
 }
203
 
207
 
204
 export interface AndroidWebViewProps {
208
 export interface AndroidWebViewProps {
417
   public goBack: () => void;
421
   public goBack: () => void;
418
   public reload: () => void;
422
   public reload: () => void;
419
   public stopLoading: () => void;
423
   public stopLoading: () => void;
424
+  public injectJavaScript: (js: string) => void
420
 }
425
 }