member_webapp/@overflow/noauth-probe/store/connecting/noauth-probe-connecting.effect.ts

24 lines
547 B
TypeScript
Raw Normal View History

2018-05-31 07:38:44 +00:00
import { Injectable } from '@angular/core';
import { Router } from '@angular/router';
import { Effect, Actions, ofType } from '@ngrx/effects';
import { Action } from '@ngrx/store';
import { RPCClientError } from '@loafer/ng-rpc';
import { NoAuthProbeService } from '../../service/noauth-probe.service';
import {
ActionType,
} from './noauth-probe-connecting.action';
@Injectable()
export class Effects {
constructor(
private actions$: Actions,
private noAuthProbeService: NoAuthProbeService,
private router: Router
) { }
}