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.
10 lines
455 B
10 lines
455 B
// 从当前目录下的 routes 文件中导入 routes 变量和 IRoute 类型
|
|
import routes, { IRoute } from './routes'
|
|
// 从当前目录下的 users 文件中导入 users 变量和 IUser 类型
|
|
import users, { IUser } from './users'
|
|
|
|
// 导出 routes 变量,这样在其他文件中可以导入使用该变量
|
|
export { routes, users }
|
|
// 导出 IRoute 和 IUser 类型,方便其他文件导入使用这些类型定义
|
|
export type { IRoute, IUser }
|