react-native-template-allmax
Version:
React native template with navigation, redux, redux-saga, eslit, flow, reactotron
25 lines (19 loc) • 509 B
JavaScript
/**
* Created by Bardiaswift
*
* @flow
*/
import type { Dispatch as ReduxDispatch } from 'redux';
import type { AppState, AppAction } from '~/modules/app/types';
import type { BooksState, BooksAction } from '~/modules/books/types';
export type * from '~/modules/app/types';
export type * from '~/modules/books/types';
export type ReduxState = {|
app: AppState,
books: BooksState,
|};
export type ReduxAction = (
| AppAction
| BooksAction
);
export type Dispatch = ReduxDispatch<ReduxAction>;