import { ActivatedRoute } from '@angular/router'; import { NamedRoutes } from './enums'; export interface NamedRoute { name: NamedRoutes; branchRoot: boolean; displayName: string; url: string; pathToMatch: string; activatedRoute: ActivatedRoute; }