Work in progress

This commit is contained in:
gpt-engineer-app[bot]
2026-05-13 05:02:07 +00:00
parent 65814763fd
commit 72a1bf3e0a
+9
View File
@@ -1335,3 +1335,12 @@ const rootRouteChildren: RootRouteChildren = {
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()
import type { getRouter } from './router.tsx'
import type { createStart } from '@tanstack/react-start'
declare module '@tanstack/react-start' {
interface Register {
ssr: true
router: Awaited<ReturnType<typeof getRouter>>
}
}