angular/modules/@angular/router/build/src/directives/router_link.d.ts

13 lines
371 B
TypeScript

import { Router } from '../router';
import { ActivatedRoute } from '../router_state';
export declare class RouterLink {
private router;
private route;
target: string;
private commands;
href: string;
constructor(router: Router, route: ActivatedRoute);
routerLink: any[] | string;
onClick(): boolean;
private updateTargetUrlAndHref();
}