We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da874e2 commit 9bd02c6Copy full SHA for 9bd02c6
types.js
@@ -62,6 +62,9 @@ type InAppBrowserAndroidOptions = {
62
showInRecents?: boolean,
63
};
64
65
-export type InAppBrowserOptions = InAppBrowserAndroidOptions | InAppBrowseriOSOptions;
+export type InAppBrowserOptions = {
66
+ ...InAppBrowserAndroidOptions,
67
+ ...InAppBrowseriOSOptions
68
+};
69
70
export type AuthSessionResult = RedirectResult | BrowserResult;
0 commit comments