my-test123
Version:
A planner front-end for Fabric8.
17 lines (16 loc) • 657 B
TypeScript
import { Store } from '@ngrx/store';
import { Actions } from '@ngrx/effects';
import * as AreaActions from './../actions/area.actions';
import { Observable } from 'rxjs';
import { AppState } from './../states/app.state';
import { Notifications } from "ngx-base";
import { AreaService as AService } from './../services/area.service';
export declare type Action = AreaActions.All;
export declare class AreaEffects {
private actions$;
private areaService;
private store;
private notifications;
constructor(actions$: Actions, areaService: AService, store: Store<AppState>, notifications: Notifications);
getAreas$: Observable<Action>;
}