projects
/
examples
/
angular-tour-of-heroes
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
WIP: 6: Get Data from a Server k) Search by name
[examples/angular-tour-of-heroes]
/
reducers
/
index.ts
1
import {
2
ActionReducer,
3
ActionReducerMap,
4
createFeatureSelector,
5
createSelector,
6
MetaReducer
7
} from '@ngrx/store';
8
import { environment } from '../../environments/environment';
9
10
export interface State {
11
12
}
13
14
export const reducers: ActionReducerMap<State> = {
15
16
};
17
18
19
export const metaReducers: MetaReducer<State>[] = !environment.production ? [] : [];