my-test123
Version:
A planner front-end for Fabric8.
16 lines (15 loc) • 554 B
TypeScript
import { Actions } from '@ngrx/effects';
import * as SpaceActions from './../actions/space.actions';
import { Observable } from 'rxjs';
import { Spaces } from 'ngx-fabric8-wit';
import { Notifications } from "ngx-base";
export declare type Action = SpaceActions.All;
export declare class SpaceEffects {
private actions$;
private spaces;
private notifications;
private oldSpaceId;
constructor(actions$: Actions, spaces: Spaces, notifications: Notifications);
getSpace$: Observable<Action>;
getSpaceSuccess$: Observable<any>;
}