Ver código fonte

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

William Chong 4 anos atrás
pai
commit
38d1dbcaff
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 5 adições e 0 exclusões
  1. 5
    0
      src/WebViewTypes.ts

+ 5
- 0
src/WebViewTypes.ts Ver arquivo

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