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