You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
391 B
15 lines
391 B
import { Plugin } from '@umijs/runtime';
|
|
import { IRoute } from '..';
|
|
interface IOpts {
|
|
routes: IRoute[];
|
|
plugin: Plugin;
|
|
extraProps?: object;
|
|
pageInitialProps?: object;
|
|
getInitialPropsCtx?: object;
|
|
isServer?: boolean;
|
|
ssrProps?: object;
|
|
rootRoutes?: IRoute[];
|
|
}
|
|
export default function renderRoutes(opts: IOpts): JSX.Element | null;
|
|
export {};
|