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:
parent
12eb04b236
commit
0c5b390178
|
@ -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 {
|
||||
|
||||
|
|
Loading…
Reference in New Issue