TabOneScreen({ navigation }) 的导航类型是什么?

what's the type of navigation for TabOneScreen({ navigation })?

我正在使用 typescript,当我使用 react native 导航时它会弹出错误,那么代码 TabOneScreen({ navigation }) 的导航类型到底是什么?

谢谢,

这取决于您的导航器结构,但您可以在 React Navigation docs.

中找到更多信息

他们有一个简单的堆栈导航器示例,屏幕名为 Profile

import { StackNavigationProp } from '@react-navigation/stack';

type ProfileScreenNavigationProp = StackNavigationProp<
  RootStackParamList,
  'Profile'
>;

type Props = {
  navigation: ProfileScreenNavigationProp;
};