(router: Router, fn: Function)
| 613 | }); |
| 614 | |
| 615 | function onNavigationEnd(router: Router, fn: Function) { |
| 616 | router.events.subscribe((e) => { |
| 617 | if (e instanceof NavigationEnd) { |
| 618 | fn(); |
| 619 | } |
| 620 | }); |
| 621 | } |
| 622 | |
| 623 | function provideNavigationEndAction(fn: Function) { |
| 624 | return { |
no test coverage detected
searching dependent graphs…