From 91295e5258ee6f431c1112dc5525779c5739e773 Mon Sep 17 00:00:00 2001 From: Caleb Clarke Date: Wed, 29 Jul 2020 08:00:28 -0700 Subject: [PATCH] fix(types): Add missing applicationNameForUserAgent type in WebViewSharedProps (#1542) --- src/WebViewTypes.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/WebViewTypes.ts b/src/WebViewTypes.ts index 625fbb3..602b2e7 100644 --- a/src/WebViewTypes.ts +++ b/src/WebViewTypes.ts @@ -973,4 +973,9 @@ export interface WebViewSharedProps extends ViewProps { * Should caching be enabled. Default is true. */ cacheEnabled?: boolean; + + /** + * Append to the existing user-agent. Overridden if `userAgent` is set. + */ + applicationNameForUserAgent?: string; }