zepio/app/types/redux.js

8 lines
180 B
JavaScript
Raw Normal View History

2018-11-23 10:41:50 -08:00
// @flow
2018-12-03 11:27:56 -08:00
type State = {||};
2018-11-23 10:41:50 -08:00
export type Action = { type: $Subtype<string>, payload: Object };
export type GetState = () => State;
export type Dispatch = (action: Action) => any;