Skip to content

Commit 406cec6

Browse files
ci: apply automated fixes
1 parent 879b53b commit 406cec6

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

packages/router-core/src/route.ts

+13-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ import type {
88
RouteMatch,
99
} from './Matches'
1010
import type { RootRouteId } from './root'
11-
import type { FullSearchSchema, ParseRoute, RouteById, RoutePaths } from './routeInfo'
11+
import type {
12+
FullSearchSchema,
13+
ParseRoute,
14+
RouteById,
15+
RoutePaths,
16+
} from './routeInfo'
1217
import type { AnyRouter, RegisteredRouter } from './router'
1318
import type { BuildLocationFn, NavigateFn } from './RouterProvider'
1419
import type {
@@ -1035,8 +1040,9 @@ export interface UpdatableRouteOptions<
10351040
{
10361041
location,
10371042
}: {
1038-
location:
1039-
ParsedLocation<ResolveFullSearchSchema<TParentRoute, TSearchValidator>>
1043+
location: ParsedLocation<
1044+
ResolveFullSearchSchema<TParentRoute, TSearchValidator>
1045+
>
10401046
},
10411047
) => void
10421048
onStay?: (
@@ -1057,8 +1063,9 @@ export interface UpdatableRouteOptions<
10571063
{
10581064
location,
10591065
}: {
1060-
location:
1061-
ParsedLocation<ResolveFullSearchSchema<TParentRoute, TSearchValidator>>
1066+
location: ParsedLocation<
1067+
ResolveFullSearchSchema<TParentRoute, TSearchValidator>
1068+
>
10621069
},
10631070
) => void
10641071
onLeave?: (
@@ -1076,7 +1083,7 @@ export interface UpdatableRouteOptions<
10761083
>,
10771084
TLoaderDeps
10781085
>,
1079-
{ location }: { location: ParsedLocation<FullSearchSchema<TRouteTree>>},
1086+
{ location }: { location: ParsedLocation<FullSearchSchema<TRouteTree>> },
10801087
) => void
10811088
headers?: (ctx: {
10821089
loaderData: ResolveLoaderData<TLoaderFn>

0 commit comments

Comments
 (0)