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;
canActivate?: any[],
2016-06-02 21:44:57 +00:00
canDeactivate?: any[],
2016-05-23 23:14:23 +00:00
children?: Route[];
}