Ver código fonte

fix(types): Add missing applicationNameForUserAgent type in WebViewSharedProps (#1542)

Caleb Clarke 4 anos atrás
pai
commit
91295e5258
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

@@ -973,4 +973,9 @@ export interface WebViewSharedProps extends ViewProps {
973 973
    * Should caching be enabled. Default is true.
974 974
    */
975 975
   cacheEnabled?: boolean;
976
+
977
+  /**
978
+   * Append to the existing user-agent. Overridden if `userAgent` is set.
979
+   */
980
+  applicationNameForUserAgent?: string;
976 981
 }