25 lines
662 B
TypeScript
25 lines
662 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { StoreModule } from '@ngrx/store';
|
|
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
|
|
import {
|
|
StoreRouterConnectingModule,
|
|
RouterStateSerializer,
|
|
} from '@ngrx/router-store';
|
|
import { EffectsModule } from '@ngrx/effects';
|
|
import { combineReducers, ActionReducer, ActionReducerMap, MetaReducer } from '@ngrx/store';
|
|
|
|
import {
|
|
REDUCERS,
|
|
EFFECTS,
|
|
} from './store';
|
|
|
|
import { MODULE } from './sensor-display-item.constant';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
StoreModule.forFeature(MODULE.name, REDUCERS),
|
|
EffectsModule.forFeature(EFFECTS),
|
|
],
|
|
})
|
|
export class MetaSensorDisplayItemStoreModule { }
|