my-test123
Version:
A planner front-end for Fabric8.
19 lines (18 loc) • 838 B
TypeScript
import { UserService } from 'ngx-login-client';
import { Store } from '@ngrx/store';
import { Actions } from '@ngrx/effects';
import * as CollaboratorActions from './../actions/collaborator.actions';
import { Observable } from 'rxjs';
import { AppState } from './../states/app.state';
import { Notifications } from "ngx-base";
import { CollaboratorService as CollabService } from './../services/collaborator.service';
export declare type Action = CollaboratorActions.All;
export declare class CollaboratorEffects {
private actions$;
private collaboratorService;
private userService;
private notifications;
private store;
constructor(actions$: Actions, collaboratorService: CollabService, userService: UserService, notifications: Notifications, store: Store<AppState>);
getCollaborators$: Observable<Action>;
}