Parcourir la source

fix(types): Add missing applicationNameForUserAgent type in non native prop

William Chong il y a 6 ans
Parent
révision
38d1dbcaff
No account linked to committer's email address
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5
    0
      src/WebViewTypes.ts

+ 5
- 0
src/WebViewTypes.ts Voir le fichier

736
    * Should caching be enabled. Default is true.
736
    * Should caching be enabled. Default is true.
737
    */
737
    */
738
   cacheEnabled?: boolean;
738
   cacheEnabled?: boolean;
739
+
740
+  /**
741
+   * Append to the existing user-agent. Overriden if `userAgent` is set.
742
+   */
743
+  applicationNameForUserAgent?: string;
739
 }
744
 }