2015-04-17 09:59:56 -07:00
|
|
|
import {CONST} from 'angular2/src/facade/lang';
|
2015-04-29 15:47:12 -07:00
|
|
|
import {List} from 'angular2/src/facade/collection';
|
2015-04-17 09:59:56 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* You use the RouteConfig annotation to ...
|
|
|
|
*/
|
|
|
|
export class RouteConfig {
|
2015-04-29 15:47:12 -07:00
|
|
|
configs;
|
2015-04-17 09:59:56 -07:00
|
|
|
@CONST()
|
2015-04-29 15:47:12 -07:00
|
|
|
constructor(configs:List) {
|
|
|
|
this.configs = configs;
|
2015-04-17 09:59:56 -07:00
|
|
|
}
|
|
|
|
}
|