10 lines
224 B
TypeScript

import { Type } from '@angular/core';
export declare type RouterConfig = Route[];
export interface Route {
index?: boolean;
path?: string;
component: Type | string;
outlet?: string;
children?: Route[];
}