From a73edd1232931f6e44d900fe76d6f83813510290 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Tue, 16 Aug 2022 16:05:20 +0200 Subject: [PATCH] refactor(types): unused generic --- packages/router/src/types/index.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/router/src/types/index.ts b/packages/router/src/types/index.ts index ef5b7f1d..9860e671 100644 --- a/packages/router/src/types/index.ts +++ b/packages/router/src/types/index.ts @@ -49,8 +49,8 @@ export interface RouteQueryAndHash { /** * @internal */ -export interface MatcherLocationAsPath

{ - path: P +export interface MatcherLocationAsPath { + path: string } /** @@ -64,16 +64,16 @@ export interface MatcherLocationAsName { /** * @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 } /** -- 2.47.2