angular/modules/@angular/router/src/config.ts

13 lines
255 B
TypeScript
Raw Normal View History

2016-05-23 23:14:23 +00:00
import { Type } from '@angular/core';
export type RouterConfig = Route[];
export interface Route {
index?: boolean;
path?: string;
component: Type | string;
outlet?: string;
2016-06-07 16:50:35 +00:00
canActivate?: any[];
canDeactivate?: any[];
2016-05-23 23:14:23 +00:00
children?: Route[];
}