mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-19 17:02:54 +00:00
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
declare const routerConfig: {
|
|
path: string;
|
|
component: any;
|
|
children: ({
|
|
path: string;
|
|
component: any;
|
|
redirect?: undefined;
|
|
} | {
|
|
path: string;
|
|
redirect: string;
|
|
component?: undefined;
|
|
})[];
|
|
}[];
|
|
export default routerConfig;
|