This commit broke importing this module from TypeScript: https://github.com/angular-redux/ng-redux/commit/0f9fe1728fa43b1ab4946ee556d63ca754472421#diff-b52768974e6bc0faccb7d4b75b162c99 The following TypeScript code should work: ``` import ngRedux from 'ng-redux'; ``` After this commit, which removes the default export from the typings, this fails with the following error: ``` error TS1192: Module '"/path/to/node_modules/ng-redux/index"' has no default export. ```