如何使用带有ReactComponent的React Native Navigation和Typescript键入组件

时间:2019-08-21 22:01:50

标签: typescript react-native react-native-navigation

我有一个这样注册的组件:

  Navigation.registerComponent(screens.myScreen, () => props => (
    <Provider store={store}>
      <MyScreen {...props} />
    </Provider>
  ));

我对此组件有一个接口,可以在其中键入道具:

export interface MyScreen extends [WIX NATIVE NAVIGATION INTERFACE] {
...
...
}

我想扩展此接口以包括React Native Navigation registerComponent中的道具,但是我还没有找到正确的声明来代替[WIX NATIVE NAVIGATION INTERFACE]

Wix react native navigation是否为此提供了接口?

0 个答案:

没有答案