Route

Stable Interface

Interface Overview

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
interface Route {
  path : string
  pathMatch : string
  component : Type<any>
  redirectTo : string
  outlet : string
  canActivate : any[]
  canActivateChild : any[]
  canDeactivate : any[]
  canLoad : any[]
  data : Data
  resolve : ResolveData
  children : Route[]
  loadChildren : LoadChildren
}

Interface Description

See Routes for more details.

Interface Details

path : string
pathMatch : string
component : Type<any>
redirectTo : string
outlet : string
canActivate : any[]
canActivateChild : any[]
canDeactivate : any[]
canLoad : any[]
data : Data
resolve : ResolveData
children : Route[]
loadChildren : LoadChildren

exported from @angular/router/index, defined in @angular/router/src/config.ts

doc_Angular
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.