diff --git a/src/router/types.ts b/src/router/types.ts index 0044bbb..7cc3151 100644 --- a/src/router/types.ts +++ b/src/router/types.ts @@ -1,9 +1,9 @@ -import type { RouteLocationNormalized } from 'vue-router' - -export interface EnhancedRouteLocation extends RouteLocationNormalized { - meta: { - level?: number | unknown - name?: string - keepAlive?: boolean - } -} +import type { RouteLocationNormalized } from 'vue-router' + +export type EnhancedRouteLocation = RouteLocationNormalized & { + meta: { + level?: number | unknown + name?: string + keepAlive?: boolean + } +}