我已经声明了返回的类型,我在这里使用了redux action creator,如flowjs.org教程中所述 - https://flow.org/en/docs/react/redux/
type UpAsyncAction = { type:typeof UP_ASYNC, times:number };
const upAsync = (times=1): UpAsyncAction => ({ type:UP_ASYNC, times });
times
参数加下划线,如下截图所示:
参数
times
(缺少注释)
但是我认为流程是智能的并且它使用图形算法,因此它应该能够确定如果times
在返回中并且times
被用作参数否?