Skip to content

Commit 9bd02c6

Browse files
committed
Fix flow types
1 parent da874e2 commit 9bd02c6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

types.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ type InAppBrowserAndroidOptions = {
6262
showInRecents?: boolean,
6363
};
6464

65-
export type InAppBrowserOptions = InAppBrowserAndroidOptions | InAppBrowseriOSOptions;
65+
export type InAppBrowserOptions = {
66+
...InAppBrowserAndroidOptions,
67+
...InAppBrowseriOSOptions
68+
};
6669

6770
export type AuthSessionResult = RedirectResult | BrowserResult;

0 commit comments

Comments
 (0)