2020-03-04 20:57:29 +08:00

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;