We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2737402 commit 6982952Copy full SHA for 6982952
example-app/app/books/reducers/index.ts
@@ -12,14 +12,15 @@ import {
12
import * as fromSearch from './search';
13
import * as fromBooks from './books';
14
import * as fromCollection from './collection';
15
+import * as fromRoot from '../../reducers';
16
17
export interface BooksState {
18
search: fromSearch.State;
19
books: fromBooks.State;
20
collection: fromCollection.State;
21
}
22
-export interface State extends fromBooks.State {
23
+export interface State extends fromRoot.State {
24
'books': BooksState;
25
26
0 commit comments