标签: javascript reactjs flowtype
在这样的文件中:
// index.js // @flow import Layout from './Layout'; import LayoutActions from './LayoutActions'; export { LayoutActions }; export default Layout; // flow-coverage-report complains that Layout is of type any
如何为默认导出添加类型?