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