新的材料用户界面类型,以区分父项和HOC道具

时间:2019-01-20 07:52:22

标签: typescript material-ui typescript-typings

使用material-ui的新型语法,我对如何分离父项道具和HOC道具感到困惑。以前,我可以这样做:

NullPointerException

然后,当组件用作子代时,TypeScript仅对道具强制执行export default withStyles(styles)<NewComponentProps>(connect( mapStateToProps, mapDispatchToProps )<React.ComponentClass>(NewComponent)) 。但是现在不允许使用此语法,我无法指定从父级传递来的特定类型。我不再允许添加该部分,并被迫将其取出,如下所示:

NewComponentProps

相对于组件使用的所有道具,我如何只能执行特定道具的新语法是什么?

0 个答案:

没有答案