标签: javascript reactjs flowtype
例如,如果我有模块声明:
declare module 'redux-form' { declare type FormConfig = { form: string, validate?: Function }; }
是否可以在我的代码中以某种方式使用此类型?
如果没有,在几个文件之间共享类型的方法是什么?
答案 0 :(得分:2)
是的,您只需要import type {FormConfig} from 'redux-form';
import type {FormConfig} from 'redux-form';