mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
13 lines
371 B
TypeScript
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();
|
|
}
|