ngx-gem-spaas
Version:
This library contains services, components, images and styles to provide a unified look and way-of-working throughout GEM SPaaS.
18 lines (17 loc) • 760 B
TypeScript
import { Observable } from 'rxjs';
import { ActiveRouteModel } from '../_models/active-route.model';
import { Title } from '@angular/platform-browser';
import { ConfigService } from "./config.service";
import * as i0 from "@angular/core";
export declare class ActiveRouteService {
private configService;
private titleService;
private activeRoute;
private activeRoute$;
constructor(configService: ConfigService, titleService: Title);
newActiveRoute(url: string, queryParams: any, params: any): void;
onNewActiveRoute(): Observable<ActiveRouteModel>;
getActiveRoute(): ActiveRouteModel;
static ɵfac: i0.ɵɵFactoryDeclaration<ActiveRouteService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<ActiveRouteService>;
}