mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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[];
|
||
|
|
}
|