Angular module name is no more exported as default.
So this code no more working
import NgRedux from 'ng-redux';
angular.module('app', [NgRedux]);
Now we should do that, but typing doesn't allow it:
import * as NgRedux from 'ng-redux';
angular.module('app', [NgRedux]);