/* eslint-disable */ // @ts-nocheck // noinspection JSUnusedGlobalSymbols // This file was automatically generated by TanStack Router. // You should NOT make any changes in this file as it will be overwritten. // Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified. import { Route as rootRouteImport } from './routes/__root' import { Route as SitemapDotxmlRouteImport } from './routes/sitemap[.]xml' import { Route as IndexRouteImport } from './routes/index' import { Route as DocsSplatRouteImport } from './routes/docs/$' import { Route as ApiSearchRouteImport } from './routes/api/search' const SitemapDotxmlRoute = SitemapDotxmlRouteImport.update({ id: '/sitemap.xml', path: '/sitemap.xml', getParentRoute: () => rootRouteImport, } as any) const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) const DocsSplatRoute = DocsSplatRouteImport.update({ id: '/docs/$', path: '/docs/$', getParentRoute: () => rootRouteImport, } as any) const ApiSearchRoute = ApiSearchRouteImport.update({ id: '/api/search', path: '/api/search', getParentRoute: () => rootRouteImport, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/sitemap.xml': typeof SitemapDotxmlRoute '/api/search': typeof ApiSearchRoute '/docs/$': typeof DocsSplatRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/sitemap.xml': typeof SitemapDotxmlRoute '/api/search': typeof ApiSearchRoute '/docs/$': typeof DocsSplatRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/sitemap.xml': typeof SitemapDotxmlRoute '/api/search': typeof ApiSearchRoute '/docs/$': typeof DocsSplatRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: '/' | '/sitemap.xml' | '/api/search' | '/docs/$' fileRoutesByTo: FileRoutesByTo to: '/' | '/sitemap.xml' | '/api/search' | '/docs/$' id: '__root__' | '/' | '/sitemap.xml' | '/api/search' | '/docs/$' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute SitemapDotxmlRoute: typeof SitemapDotxmlRoute ApiSearchRoute: typeof ApiSearchRoute DocsSplatRoute: typeof DocsSplatRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/sitemap.xml': { id: '/sitemap.xml' path: '/sitemap.xml' fullPath: '/sitemap.xml' preLoaderRoute: typeof SitemapDotxmlRouteImport parentRoute: typeof rootRouteImport } '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } '/docs/$': { id: '/docs/$' path: '/docs/$' fullPath: '/docs/$' preLoaderRoute: typeof DocsSplatRouteImport parentRoute: typeof rootRouteImport } '/api/search': { id: '/api/search' path: '/api/search' fullPath: '/api/search' preLoaderRoute: typeof ApiSearchRouteImport parentRoute: typeof rootRouteImport } } } const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, SitemapDotxmlRoute: SitemapDotxmlRoute, ApiSearchRoute: ApiSearchRoute, DocsSplatRoute: DocsSplatRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes() import type { getRouter } from './router.tsx' import type { createStart } from '@tanstack/react-start' declare module '@tanstack/react-start' { interface Register { ssr: true router: Awaited> } }