UNPKG

753 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 { GetCaptchaSucceedAction, GetCaptchaFailedAction, GetCaptchaStartAction } from "./captcha.actions";
8import { FormCaptchaService } from "../services/form-captcha.service";
9export declare class CaptchaEffects {
10 private actions$;
11 private router;
12 private service;
13 constructor(actions$: Actions<any>, router: Router, service: FormCaptchaService);
14 GetCaptcha$: Observable<GetCaptchaStartAction>;
15 AddFormStart$: Observable<GetCaptchaSucceedAction | GetCaptchaFailedAction>;
16}