export interface MatcherLocationAsName {
name: RouteRecordName
// to allow checking location.path == null
+ /**
+ * Ignored path property since we are dealing with a relative location. Only `undefined` is allowed.
+ */
path?: undefined
params?: RouteParams
}
*/
export interface MatcherLocationAsRelative {
// to allow checking location.path == null
+ /**
+ * Ignored path property since we are dealing with a relative location. Only `undefined` is allowed.
+ */
path?: undefined
params?: RouteParams
}
export interface LocationAsRelativeRaw {
name?: RouteRecordName
// to allow checking location.path == null
+ /**
+ * Ignored path property since we are dealing with a relative location. Only `undefined` is allowed.
+ */
path?: undefined
params?: RouteParamsRaw
}