From 498e2e97a5a1914e98f64455b58cafbf5b5f735a Mon Sep 17 00:00:00 2001 From: pawelblaszczyk5 Date: Fri, 26 Sep 2025 19:17:57 +0200 Subject: [PATCH 1/2] fix: add missing export which is used as a return type --- packages/start-client-core/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/start-client-core/src/index.tsx b/packages/start-client-core/src/index.tsx index 91b0b799306..cfbf2aa5eda 100644 --- a/packages/start-client-core/src/index.tsx +++ b/packages/start-client-core/src/index.tsx @@ -79,7 +79,7 @@ export type * from './serverRoute' export type * from './startEntry' export { createStart } from './createStart' -export type { AnyStartInstance, AnyStartInstanceOptions } from './createStart' +export type { AnyStartInstance, AnyStartInstanceOptions, StartInstance } from './createStart' export type { Register } from '@tanstack/router-core' export { getRouterInstance } from './getRouterInstance' From 3f07c2f794c202946a37c6c6764851047d8515c9 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 26 Sep 2025 17:21:32 +0000 Subject: [PATCH 2/2] ci: apply automated fixes --- packages/start-client-core/src/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/start-client-core/src/index.tsx b/packages/start-client-core/src/index.tsx index cfbf2aa5eda..91fda107dc4 100644 --- a/packages/start-client-core/src/index.tsx +++ b/packages/start-client-core/src/index.tsx @@ -79,7 +79,11 @@ export type * from './serverRoute' export type * from './startEntry' export { createStart } from './createStart' -export type { AnyStartInstance, AnyStartInstanceOptions, StartInstance } from './createStart' +export type { + AnyStartInstance, + AnyStartInstanceOptions, + StartInstance, +} from './createStart' export type { Register } from '@tanstack/router-core' export { getRouterInstance } from './getRouterInstance'