fix(router): remove private and internal annotations (#9745)

This commit is contained in:
Rob Wormald
2016-06-30 14:47:55 -07:00
committed by GitHub
parent fb2539e1d5
commit dabf214f17
3 changed files with 6 additions and 8 deletions

View File

@ -137,12 +137,16 @@ export declare class RouterLink {
};
routerLink: any[] | string;
urlTree: UrlTree;
constructor(router: Router, route: ActivatedRoute, locationStrategy: LocationStrategy);
onClick(button: number, ctrlKey: boolean, metaKey: boolean): boolean;
}
/** @stable */
export declare class RouterLinkActive implements OnChanges, OnDestroy, AfterContentInit {
links: QueryList<RouterLink>;
linksWithHrefs: QueryList<RouterLinkWithHref>;
routerLinkActive: string[] | string;
constructor(router: Router, element: ElementRef, renderer: Renderer);
ngAfterContentInit(): void;
ngOnChanges(changes: {}): any;
ngOnDestroy(): any;