Redux compose()typescript ownprops

时间:2017-10-21 19:21:25

标签: typescript redux

我有一个复杂的组合组件,如:

export const NutrientEditorEnhanced = compose(
  withNutrientUnits,
  withNutrientByCode,
  withUpsertNutrient,
  withForm
)(NutrientEditor);

如何定义此HOC ownprops的类型?现在打字稿从实际的NutrientEditor借用道具,这是错误的。也许我可以通过重构来做到这一点?

我尝试了compose<IOwnProps>compose<any,any,any,any,IOwnProps>但没有帮助

由于

P.S。

我需要像<NutrientEditorEnhanced code={code} />一样使用它,而不是其他道具

0 个答案:

没有答案