ruoyi-plus-soybean/src/typings/api/route.d.ts

11 lines
260 B
TypeScript
Raw Normal View History

/** 后端返回的路由相关类型 */
declare namespace ApiRoute {
/** 后端返回的路由数据类型 */
2022-01-05 01:35:32 +08:00
interface Route {
/** 动态路由 */
routes: AuthRoute.Route[];
/** 路由首页对应的key */
2022-01-20 00:56:59 +08:00
home: AuthRoute.RouteKey;
}
}