1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-15 21:08:57 +00:00

fix flow 3

This commit is contained in:
Vladimir Volek 2018-11-22 14:41:11 +01:00
parent 22adf7fac1
commit f5537ca513
2 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@ import type { MapStateToProps, MapDispatchToProps } from 'react-redux';
import type { State, Dispatch } from 'flowtype';
import AccountSend from './index';
type OwnProps = { }
type OwnProps = {}
export type StateProps = {
selectedAccount: $ElementType<State, 'selectedAccount'>,

View File

@ -10,11 +10,6 @@ import Component from './index';
type OwnProps = {}
export type StateProps = {
wallet: $ElementType<State, 'wallet'>,
selectedAccount: $ElementType<State, 'selectedAccount'>,
}
export type SignVerifyState = {
signSignature: string,
signAddress: string,
@ -26,9 +21,14 @@ export type SignVerifyState = {
touched: Array<string>,
}
export type StateProps = {
wallet: $ElementType<State, 'wallet'>,
selectedAccount: $ElementType<State, 'selectedAccount'>,
signVerify: SignVerifyState,
}
export type DispatchProps = {
signVerifyActions: typeof SignVerifyActions,
signVerify: SignVerifyState
}
export type Props = StateProps & DispatchProps;