bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
20 lines (19 loc) • 720 B
TypeScript
import { Router } from "@angular/router";
import { Location } from "@angular/common";
import { Actions } from "@ngrx/effects";
import * as i0 from "@angular/core";
export declare class RouterEffects {
private actions$;
private router;
private location;
constructor(actions$: Actions, router: Router, location: Location);
navigate$: import("rxjs").Observable<{
path: any[];
query?: object;
extras?: import("@angular/router").NavigationExtras;
}>;
navigateBack$: import("rxjs").Observable<never>;
navigateForward$: import("rxjs").Observable<never>;
static ɵfac: i0.ɵɵFactoryDef<RouterEffects, never>;
static ɵprov: i0.ɵɵInjectableDef<RouterEffects>;
}