Created
January 5, 2018 18:21
-
-
Save HristoKolev/3d2094677274db09b28c53a30281169f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { addReducers } from '../store'; | |
addReducers({ | |
account: accountReducer | |
}); | |
declare module '../store' { | |
interface IReduxState { | |
account: IAccountState; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment