reduxとflowtypeを組み合わせたサンプルはreduxのサンプルにあるが、redux-thunkとの組み合わせの例はない。この記事では、reduxとflowtypeのサンプルを示したあと、redux-thunkで型の恩恵を受ける方法を紹介する。 redux公式のflowtypeサンプル redux/examples/todos-flow at bc3f2aeb669f4ad5e424f6a711fd588e9bd3462e · reactjs/redux types以下はこうなっている。 // @flow import type { Store as ReduxStore, Dispatch as ReduxDispatch } from 'redux' export type Id = number; export type Text = string; export type