From 3be0abd56190b957806c97d5a1412948f230fc39 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Thu, 31 Jul 2025 18:05:33 +0200 Subject: [PATCH] fix(types): missing options in RouteLocationGeneric --- packages/router/src/typed-routes/route-location.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/router/src/typed-routes/route-location.ts b/packages/router/src/typed-routes/route-location.ts index 4eb43180..c1558983 100644 --- a/packages/router/src/typed-routes/route-location.ts +++ b/packages/router/src/typed-routes/route-location.ts @@ -15,7 +15,9 @@ import type { RouteRecordNameGeneric } from './route-records' /** * Generic version of {@link RouteLocation}. It is used when no {@link RouteMap} is provided. */ -export interface RouteLocationGeneric extends _RouteLocationBase { +export interface RouteLocationGeneric + extends _RouteLocationBase, + RouteLocationOptions { /** * Array of {@link RouteRecord} containing components as they were * passed when adding records. It can also contain redirect records. This -- 2.47.2