docs(router): add description for Url class

This commit is contained in:
Brian Ford 2015-08-30 20:16:40 -07:00
parent d49bc438e8
commit 76e1f863a2
1 changed files with 3 additions and 1 deletions

View File

@ -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([]),