import type { DeepPartial } from '../types/helper'; /** * 路由配置 */ export declare const defaultRouterConfig: { /** * 主页路由的路径 */ homePath: string; /** * 登录页路由的路径 */ loginPath: string; /** * 修改密码路由的路径 */ changePasswordPath: string; }; export type RouterConfig = DeepPartial; export type RequiredRouterConfig = typeof defaultRouterConfig;