@ngrx/store installiert
[examples/angular-tour-of-heroes] / src / app / 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 ? [] : [];