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

This commit is contained in:
Caleb Clarke
2020-07-29 17:00:28 +02:00
committed by GitHub
parent 97aaf89037
commit 91295e5258
+5
View File
@@ -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;
}