BREAKING CHANGE:
This is a rename to make routing concepts easier to understand.
Before:
```
@RouteConfig([
  { path: '/', component: MyCmp, as: 'Home' }
])
```
After:
```
@RouteConfig([
  { path: '/', component: MyCmp, name: 'Home' }
])
```
Closes #4622
Closes #4896
		
	
			
		
			
				
	
	
		
			8 lines
		
	
	
		
			173 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			173 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
library angular2.src.router.route_definition;
 | 
						|
 | 
						|
abstract class RouteDefinition {
 | 
						|
  final String path;
 | 
						|
  final String name;
 | 
						|
  const RouteDefinition({this.path, this.name});
 | 
						|
}
 |