UNPKG

533 BTypeScriptView Raw
1import type { AppInstance } from '@tarojs/runtime';
2import type { History } from 'history';
3import type { MpaRouterConfig } from '../../types/router';
4/** Note: 关于多页面应用
5 * - 需要配置路由映射(根目录跳转、404 页面……)
6 * - app.onPageNotFound 事件不支持
7 * - 应用生命周期可能多次触发
8 * - TabBar 会多次加载
9 * - 不支持路由动画
10 */
11export declare function createMultiRouter(history: History, app: AppInstance, config: MpaRouterConfig, framework?: string): Promise<void>;