You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import * as NavigationService from 'react-navigation-helpers';
const navigateToCommunity = () => {
NavigationService.push("Community", {
wrongProp: 'foo', // <--- this would error since it's not declared for the route
});
};
The text was updated successfully, but these errors were encountered:
Hi!
Wondering if it's possible to get type safety out of the helper methods exposed by this library.
i.e, if you define types in your Navigators like so:
it would be great if we got type safety:
The text was updated successfully, but these errors were encountered: