Closed shepmaster closed 6 years ago
versions.ts
export default function versions(state = DEFAULT, action: Action) { /* ... */ }
index.ts
import versions, { State as VersionsState } from './versions'; export interface State { // ~snip~ versions: VersionsState; } const playgroundApp = combineReducers({ // ~snip~ versions, }); export default playgroundApp;
Hi @shepmaster thanks for reporting this. The issue was with default named functions and it's fixed in 2.0.8.
2.0.8
Cheers!
versions.ts
index.ts