fix(router): handle router outlets in ngIf

This commit is contained in:
vsavkin
2016-06-30 18:24:43 -07:00
parent f65ebec3ed
commit 0c65d5cf2b
5 changed files with 64 additions and 16 deletions
+2 -1
View File
@@ -153,7 +153,7 @@ export declare class RouterLinkActive implements OnChanges, OnDestroy, AfterCont
}
/** @stable */
export declare class RouterLinkWithHref implements OnChanges {
export declare class RouterLinkWithHref implements OnChanges, OnDestroy {
fragment: string;
href: string;
queryParams: {
@@ -163,6 +163,7 @@ export declare class RouterLinkWithHref implements OnChanges {
target: string;
urlTree: UrlTree;
ngOnChanges(changes: {}): any;
ngOnDestroy(): any;
onClick(button: number, ctrlKey: boolean, metaKey: boolean): boolean;
}