Fix NavigationEventPayload.lastState type (#3664)

Should be nullable, since it is initially called as `null` in `src/createNavigationContainer.js` (and in `react-navigation-redux-helpers`, where it is causing a Flow error)
This commit is contained in:
Ashoat Tevosyan 2018-03-05 14:04:29 -05:00 committed by Eric Vicenti
parent f1bfdeee46
commit b7994d28db

View File

@ -459,7 +459,7 @@ declare module 'react-navigation' {
type: EventType,
action: NavigationAction,
state: NavigationState,
lastState: NavigationState,
lastState: ?NavigationState,
};
declare export type NavigationEventCallback = (