my-test123
Version:
A planner front-end for Fabric8.
17 lines (16 loc) • 708 B
TypeScript
import { AppState } from './../states/app.state';
import { Store } from '@ngrx/store';
import { Actions } from '@ngrx/effects';
import * as GroupTypeActions from './../actions/group-type.actions';
import { Observable } from 'rxjs';
import { GroupTypesService as GTService } from './../services/group-types.service';
import { Notifications } from "ngx-base";
export declare type Action = GroupTypeActions.All;
export declare class GroupTypeEffects {
private actions$;
private groupTypeService;
private notifications;
private store;
constructor(actions$: Actions, groupTypeService: GTService, notifications: Notifications, store: Store<AppState>);
getGroupTypes$: Observable<Action>;
}