/**
* @internal
*/
-export interface MatcherLocationAsPath<P extends string = string> {
- path: P
+export interface MatcherLocationAsPath {
+ path: string
}
/**
/**
* @internal
*/
-export interface LocationAsRelativeRaw {
- name?: RouteRecordName
- params?: RouteParamsRaw
+export interface MatcherLocationAsRelative {
+ params?: RouteParams
}
/**
* @internal
*/
-export interface MatcherLocationAsRelative {
- params?: RouteParams
+export interface LocationAsRelativeRaw {
+ name?: RouteRecordName
+ params?: RouteParamsRaw
}
/**