angular-redux/ng-redux

3.5.0 Typings not updated

jrakotoharisoa opened this issue · 4 comments

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]);

@jrakotoharisoa Have you found any way to import 3.5.0? For me the only solution was to downgrade to 3.4.1.

@Nagogus Temporarily, I use :

const NgRedux = require('ng-redux');

angular.module('app', [NgRedux]);

Fix with #155

The fix for this will be released in version 3.5.1