From e0202e459fd0181db551d0025ef562d7998186b0 Mon Sep 17 00:00:00 2001 From: Wei Yeh Date: Sun, 5 Nov 2017 12:01:16 -0800 Subject: [PATCH] Fix a few more Flow warnings Differential Revision: D6236901 fbshipit-source-id: d98c46cce83ddb45d7f9139d981595eaaeeff933 --- Libraries/Alert/Alert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Alert/Alert.js b/Libraries/Alert/Alert.js index bd7d46f51..40666f70e 100644 --- a/Libraries/Alert/Alert.js +++ b/Libraries/Alert/Alert.js @@ -17,7 +17,7 @@ const Platform = require('Platform'); import type { AlertType, AlertButtonStyle } from 'AlertIOS'; -type Buttons = Array<{ +export type Buttons = Array<{ text?: string, onPress?: ?Function, style?: AlertButtonStyle,