angular-cn/modules/angular2/src/router/route_config_impl.js

20 lines
455 B
JavaScript
Raw Normal View History

import {CONST} from 'angular2/src/facade/lang';
import {List, Map} from 'angular2/src/facade/collection';
/**
* 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)
* - `as` (optional)
*/
export class RouteConfig {
configs:List<Map>;
2015-05-14 15:24:35 +02:00
@CONST()
constructor(configs:List<Map>) {
this.configs = configs;
}
}