UNPKG

527 BTypeScriptView Raw
1import { ElementRef, Renderer } from '@angular/core';
2import { ActivatedRoute, Router } from '@angular/router';
3import { LocationStrategy } from '@angular/common';
4export declare class StepsUtils {
5 private router;
6 private location;
7 constructor(router: Router, location: LocationStrategy);
8 disableElement(el: ElementRef, renderer: Renderer): void;
9 appendRouteLink(el: ElementRef, renderer: Renderer, routeLink: string): void;
10 createAbsoluteLink(newRoute: string, currentRoute: ActivatedRoute): string;
11}