3.5.0 Typings not updated
jrakotoharisoa opened this issue · 4 comments
jrakotoharisoa commented
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]);
Nagogus commented
@jrakotoharisoa Have you found any way to import 3.5.0? For me the only solution was to downgrade to 3.4.1.
jrakotoharisoa commented
@Nagogus Temporarily, I use :
const NgRedux = require('ng-redux');
angular.module('app', [NgRedux]);
jrakotoharisoa commented
Fix with #155
AntJanus commented
The fix for this will be released in version 3.5.1