ResolveStart

class

npm Package @angular/router
Module import { ResolveStart } from '@angular/router';
Source router/src/events.ts

Represents the start of the Resolve phase of routing. The timing of this event may change, thus it's experimental. In the current iteration it will run in the "resolve" phase whether there's things to resolve or not. In the future this behavior may change to only run when there are things to be resolved.

Overview

class ResolveStart {
  constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)
  id: number
  url: string
  urlAfterRedirects: string
  state: RouterStateSnapshot
  toString(): string
}

Constructor

constructor(id: number, url: string, urlAfterRedirects: string, state: RouterStateSnapshot)

Members

id: number

url: string

urlAfterRedirects: string

state: RouterStateSnapshot

toString(): string

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v4.angular.io/api/router/ResolveStart