import { Map } from "immutable"; import WalletReducer from "./wallet"; export interface ImmutableMap extends Map { get>(key: K, notSetValue?: any): T[K]; set>(key: K, value: any): any; } export { WalletReducer };