소스 검색

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

Caleb Clarke 4 년 전
부모
커밋
91295e5258
No account linked to committer's email address
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5
    0
      src/WebViewTypes.ts

+ 5
- 0
src/WebViewTypes.ts 파일 보기

@@ -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
 }