export class RouteParams
export class RouteParams
exported from angular2/router defined in angular2/src/router/instruction.ts (line 3)
RouteParams
is an immutable map of parameters for the given route
based on the url matcher and optional parameters for that route.
You can inject RouteParams
into the constructor of a component to use it.
Example
Constructor
constructor(params: {[key: string]: string})
constructor(params: {[key: string]: string})
Not Yet Documented
Members
params : {[key: string]: string}
params : {[key: string]: string}
Not Yet Documented
get(param: string) : string
get(param: string) : string
Not Yet Documented