1 | import type { History } from 'history';
|
2 | import type { MpaRouterConfig, SpaRouterConfig } from '../types/router';
|
3 | export * from './api';
|
4 | export * from './history';
|
5 | export { createMultiRouter } from './router/mpa';
|
6 | export { createRouter } from './router/spa';
|
7 | export * from './utils';
|
8 | export declare function handleAppMount(config: SpaRouterConfig | MpaRouterConfig, _: History, appId?: string): void;
|
9 | export declare function handleAppMountWithTabbar(config: SpaRouterConfig | MpaRouterConfig, history: History, appId?: string): void;
|