import { ActionCreator, AnyAction } from 'redux'; import { ThunkAction } from 'redux-thunk'; import { ExtraArgument } from '../store/index'; import { Blockchain } from './blockchain'; import { UI } from './ui'; export type ThunkCreator> = ActionCreator>; export interface StoreState { readonly ui: UI | null, readonly blockchain: Blockchain | null, }