12 lines
223 B
TypeScript
Raw Normal View History

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