Skip to content

Commit

Permalink
fix(Example): Fix Book State interface parent (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
karptonite authored and brandonroberts committed Jul 18, 2017
1 parent 2737402 commit 6982952
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion example-app/app/books/reducers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ import {
import * as fromSearch from './search';
import * as fromBooks from './books';
import * as fromCollection from './collection';
import * as fromRoot from '../../reducers';

export interface BooksState {
search: fromSearch.State;
books: fromBooks.State;
collection: fromCollection.State;
}

export interface State extends fromBooks.State {
export interface State extends fromRoot.State {
'books': BooksState;
}

Expand Down

0 comments on commit 6982952

Please sign in to comment.