vue+ts模板对接菜单接口实在没找到 有没有大老救命
/** 根路由路径 */
type RootRoutePath = '/';
/** 捕获无效路由的路由路径 */
type NotFoundRoutePath = '/:pathMatch(.*)*';
type RootRouteKey = PageRoute.RootRouteKey;
type NotFoundRouteKey = PageRoute.NotFoundRouteKey;
type RouteKey = PageRoute.RouteKey;
type LastDegreeRouteKey = PageRoute.LastDegreeRouteKey;
type AllRouteKey = RouteKey | RootRouteKey | NotFoundRouteKey;
/** 路由路径 */
type RoutePath extends AllRouteKey = AllRouteKey> = AuthRouteUtils.GetRoutePath<K>;
没理解需求,上述代码中看到的都是ts的类型定义,请详细说明问题