DEV Community

Discussion on: Create a Simple Breadcrumb in Angular

Collapse
 
larsvonqualen profile image
Lars von Qualen

Either import the generic event from @angular/router:

import { Router, ActivatedRoute, NavigationEnd, Event } from '@angular/router';
Enter fullscreen mode Exit fullscreen mode

or change the filter to infer the type automatically:

filter(event => event instanceof NavigationEnd),
Enter fullscreen mode Exit fullscreen mode
Collapse
 
paco_ita profile image
Francesco Leardini • Edited

Using RxJS (6.6.3) and ESLint (7.10.0 with default rules) the code above fails: