2015-04-17 09:59:56 -07:00
|
|
|
import {CONST} from 'angular2/src/facade/lang';
|
2015-05-01 05:53:38 -07:00
|
|
|
import {List, Map} from 'angular2/src/facade/collection';
|
2015-04-17 09:59:56 -07:00
|
|
|
|
|
|
|
/**
|
2015-05-01 05:53:38 -07:00
|
|
|
* You use the RouteConfig annotation to add routes to a component.
|
|
|
|
*
|
|
|
|
* Supported keys:
|
|
|
|
* - `path` (required)
|
2015-05-03 20:25:26 -07:00
|
|
|
* - `component`, `components`, `redirectTo` (requires exactly one of these)
|
2015-05-01 05:53:38 -07:00
|
|
|
* - `as` (optional)
|
2015-04-17 09:59:56 -07:00
|
|
|
*/
|
|
|
|
export class RouteConfig {
|
2015-05-01 05:53:38 -07:00
|
|
|
configs:List<Map>;
|
2015-04-17 09:59:56 -07:00
|
|
|
@CONST()
|
2015-05-01 05:53:38 -07:00
|
|
|
constructor(configs:List<Map>) {
|
2015-04-29 15:47:12 -07:00
|
|
|
this.configs = configs;
|
2015-04-17 09:59:56 -07:00
|
|
|
}
|
|
|
|
}
|