zepio/app/types/app-state.js

8 lines
152 B
JavaScript

// @flow
import type { State as WalletSummaryState } from '../redux/modules/wallet';
export type AppState = {
walletSummary: WalletSummaryState,
};