Fix error in flow types

Summary:
Previously type Options had excludeActivityTypes property, but in RCTActionSheetManager.m and docs this property is named excludedActivityTypes.

<!--
Thank you for sending the PR! We appreciate you spending the time to work on these changes.

Help us understand your motivation by explaining why you decided to make this change.

You can learn more about contributing to React Native here: http://facebook.github.io/react-native/docs/contributing.html

Happy contributing!

-->

Want to fix error in flow types

Actually, it seems there aren't any need for test plan for this PR. Just fix a mistyping error.
Closes https://github.com/facebook/react-native/pull/15881

Differential Revision: D5813539

Pulled By: ericnakagawa

fbshipit-source-id: 7d1269d4c177f920869bf6554f14af6db7a741ee
This commit is contained in:
Anton Semenov 2017-09-12 05:29:46 -07:00 committed by Facebook Github Bot
parent 12eb04b236
commit 0c5b390178
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ const {
} = require('NativeModules');
type Content = { title?: string, message: string } | { title?: string, url: string };
type Options = { dialogTitle?: string, excludeActivityTypes?: Array<string>, tintColor?: string };
type Options = { dialogTitle?: string, excludedActivityTypes?: Array<string>, tintColor?: string };
class Share {