我正在使用ReactNavigation v6沿着 typescript
我已经创建了一个助手函数
export function navigate(routeName, routeParams) {
navigationRef.current?.navigate(routeName, routeParams);
}
我应该为routeName & routeParams指定什么类型,以便它正确地检查这些参数?
我的StackNavigator有以下类型
export type StackNavigator = {
Welcome: undefined;
Username: undefined;
Password: undefined;
ForgotPassword: {id: number};
};
1条答案
按热度按时间wgxvkvu91#
可使用以下类型键入routeName参数
但routeParams将是动态的,即routeParams将根据routeName更改
它可以是
因此,为了基于第一参数的值计算第二参数,我们可以执行以下操作
这将确保严格的类型检查