UNPKG

711 BTypeScriptView Raw
1import "rxjs/add/operator/map";
2import "rxjs/add/operator/mergeMap";
3import "rxjs/add/operator/switchMap";
4import { Router } from "@angular/router";
5import { Observable } from "rxjs/Observable";
6import { Actions } from "@ngrx/effects";
7import { FormService } from "../services/form.service";
8import { AddFormStartAction, AddFormSucceedAction, AddFormFailedAction } from "./add-form.actions";
9export declare class AddFormEffects {
10 private actions$;
11 private router;
12 private service;
13 constructor(actions$: Actions<any>, router: Router, service: FormService);
14 AddForm$: Observable<AddFormStartAction>;
15 AddFormStart$: Observable<AddFormSucceedAction | AddFormFailedAction>;
16}