my-test123
Version:
A planner front-end for Fabric8.
18 lines (17 loc) • 696 B
TypeScript
import { Store } from '@ngrx/store';
import { Actions } from '@ngrx/effects';
import * as LabelActions from './../actions/label.actions';
import { Observable } from 'rxjs';
import { LabelService } from './../services/label.service';
import { AppState } from './../states/app.state';
import { Notifications } from "ngx-base";
export declare type Action = LabelActions.All;
export declare class LabelEffects {
private actions$;
private labelService;
private store;
private notifications;
constructor(actions$: Actions, labelService: LabelService, store: Store<AppState>, notifications: Notifications);
getLabels$: Observable<Action>;
createLabel$: Observable<Action>;
}