docs(router): add description for Url class
This commit is contained in:
parent
d49bc438e8
commit
76e1f863a2
|
@ -7,7 +7,9 @@ import {
|
||||||
CONST_EXPR
|
CONST_EXPR
|
||||||
} from 'angular2/src/core/facade/lang';
|
} from 'angular2/src/core/facade/lang';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class represents a parsed URL
|
||||||
|
*/
|
||||||
export class Url {
|
export class Url {
|
||||||
constructor(public path: string, public child: Url = null,
|
constructor(public path: string, public child: Url = null,
|
||||||
public auxiliary: List<Url> = CONST_EXPR([]),
|
public auxiliary: List<Url> = CONST_EXPR([]),
|
||||||
|
|
Loading…
Reference in New Issue