Quantcast
Channel: Active questions tagged react-native+typescript - Stack Overflow
Viewing all articles
Browse latest Browse all 6405

route (react-navigation) type in typescript

$
0
0

For navigations, I am using useNavigation from '@react-navigation/native';

I am using this to pass data between two screens in my app:

type UserDetailsProps = {  onDeleteContact: (id: number) => void;  route: any;};

I don't want to use the any time but I don't know what other type is suitable here.


Viewing all articles
Browse latest Browse all 6405

Trending Articles