hotfix: update app-state type definitions

This commit is contained in:
George Lima 2018-12-10 14:08:43 -03:00
parent 1b341bd158
commit c7e6f25e98
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
// @flow
import type { TodoType } from './todo';
import type { State as WalletSummaryState } from '../redux/modules/wallet';
export type AppState = {
todos: Array<TodoType>,
walletSummary: WalletSummaryState,
};