[Flow] Fix or suppress last minute errors for 0.12.0

This commit is contained in:
Gabe Levi
2015-06-11 18:39:46 -07:00
parent c87158d5ee
commit 66c7511f73
5 changed files with 20 additions and 19 deletions

View File

@@ -83,16 +83,16 @@ var NavigatorTransitionerIOS = React.createClass({
type Route = {
component: Function;
title: string;
passProps: Object;
backButtonTitle: string;
backButtonIcon: Object;
leftButtonTitle: string;
leftButtonIcon: Object;
onLeftButtonPress: Function;
rightButtonTitle: string;
rightButtonIcon: Object;
onRightButtonPress: Function;
wrapperStyle: any;
passProps?: Object;
backButtonTitle?: string;
backButtonIcon?: Object;
leftButtonTitle?: string;
leftButtonIcon?: Object;
onLeftButtonPress?: Function;
rightButtonTitle?: string;
rightButtonIcon?: Object;
onRightButtonPress?: Function;
wrapperStyle?: any;
};
type State = {