我想用typedoc生成项目的类型doc,
使用/usr/local/lib/node_modules/typedoc/node_modules/typescript/lib
中的TypeScript 3.2.4
但是我遇到以下错误:
错误:/Users/apple/Public/Github/StationApp/src/home/HomeStackNavigation.tsx(12)
绑定元素“导航”隐式具有“任意”类型。
错误:/Users/apple/Public/Github/StationApp/src/stat/StatStackNavigation.tsx(13)
// use react-navigation
StationStatStack.navigationOptions = ({ navigation }) => {
let tabBarVisible = true;
if (navigation.state.index > 0) {
tabBarVisible = false;
}
return {
tabBarVisible
};
};