type HomeTabParamList = { Chats: undefined; Contacts: undefined; Profile: undefined;};
How do u merge
type ContactsScreenProps = CompositeScreenProps< BottomTabScreenProps<HomeTabParamList, 'Contacts'>, StackScreenProps<RootStackParamList>>;
into
export type HomeTabScreenProps<RouteName extends keyof HomeTabParamList> = BottomTabScreenProps<HomeTabParamList, RouteName>;
?
I'm aware you can also just use ContactsScreenProps
as the props for that screen. Just want to know if it's possible to reinject it into HomeTabScreenProps
for a unified API