From 4be47eb978b90a807e452dbb567262aedb807635 Mon Sep 17 00:00:00 2001 From: Anton Semenov Date: Sun, 10 Sep 2017 21:00:37 +0300 Subject: [PATCH] Fix excludeActivityTypes property of ShareActionSheetIOSOptions This property casting as it is to iOS native UIActivityViewController, that has a property excludedActivityTypes, not excludeActivityTypes --- types/react-native/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-native/index.d.ts b/types/react-native/index.d.ts index f07b6df158..5af1f6e9b6 100644 --- a/types/react-native/index.d.ts +++ b/types/react-native/index.d.ts @@ -6559,7 +6559,7 @@ export type ShareContent = { export type ShareOptions = { dialogTitle?: string - excludeActivityTypes?: Array + excludedActivityTypes?: Array tintColor?: string }