2 parents cc2f969 + 795341c commit aeeec42Copy full SHA for aeeec42
1 file changed
src/routeTree.gen.ts
@@ -3449,3 +3449,13 @@ const rootRouteChildren: RootRouteChildren = {
3449
export const routeTree = rootRouteImport
3450
._addFileChildren(rootRouteChildren)
3451
._addFileTypes<FileRouteTypes>()
3452
+
3453
+import type { getRouter } from './router.tsx'
3454
+import type { startInstance } from './start.ts'
3455
+declare module '@tanstack/react-start' {
3456
+ interface Register {
3457
+ ssr: true
3458
+ router: Awaited<ReturnType<typeof getRouter>>
3459
+ config: Awaited<ReturnType<typeof startInstance.getOptions>>
3460
+ }
3461
+}
0 commit comments