docs: update router to use @publicApi tags (#26595)

PR Close #26595
This commit is contained in:
Pete Bacon Darwin
2018-10-19 18:25:11 +01:00
committed by Alex Rickabaugh
parent c1724062f1
commit 13143b850e
20 changed files with 67 additions and 65 deletions

View File

@ -88,7 +88,7 @@ import {UrlTree} from '../url_tree';
*
* @ngModule RouterModule
*
*
* @publicApi
*/
@Directive({selector: ':not(a)[routerLink]'})
export class RouterLink {
@ -167,7 +167,7 @@ export class RouterLink {
*
* @ngModule RouterModule
*
*
* @publicApi
*/
@Directive({selector: 'a[routerLink]'})
export class RouterLinkWithHref implements OnChanges, OnDestroy {

View File

@ -70,7 +70,7 @@ import {RouterLink, RouterLinkWithHref} from './router_link';
*
* @ngModule RouterModule
*
*
* @publicApi
*/
@Directive({
selector: '[routerLinkActive]',

View File

@ -34,7 +34,7 @@ import {PRIMARY_OUTLET} from '../shared';
* ```
* @ngModule RouterModule
*
*
* @publicApi
*/
@Directive({selector: 'router-outlet', exportAs: 'outlet'})
export class RouterOutlet implements OnDestroy, OnInit {