打字稿类型检查反应问题的组件注入redux(mobx)

时间:2018-12-19 18:19:55

标签: reactjs typescript react-redux

类型检查不适用于商店注入的导出组件,导出props接口也不起作用。

interface IProps{
    //...types here
}
export class TaskList extends React.Component<IProps, IState> {
    //...class content
}

export default compose(withNavigation, inject("store"), observer)(TaskList);

然后在另一个组件中,当我尝试致电

<TaskList 
    //...props here 
/>

不对道具进行类型检查(它们甚至不会显示在VSCode的IntelliSense上),就像它们在其他正常导出的组件中一样。

0 个答案:

没有答案