/* 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 IndexRouteImport } from './routes/index' import { Route as ThreadsThreadIdRouteImport } from './routes/threads/$threadId' import { Route as CollectionIndexRouteImport } from './routes/collection/index' import { Route as SetupsIndexRouteImport } from './routes/setups/index' import { Route as SetupsSetupIdRouteImport } from './routes/setups/$setupId' const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) const ThreadsThreadIdRoute = ThreadsThreadIdRouteImport.update({ id: '/threads/$threadId', path: '/threads/$threadId', getParentRoute: () => rootRouteImport, } as any) const CollectionIndexRoute = CollectionIndexRouteImport.update({ id: '/collection/', path: '/collection/', getParentRoute: () => rootRouteImport, } as any) const SetupsIndexRoute = SetupsIndexRouteImport.update({ id: '/setups/', path: '/setups/', getParentRoute: () => rootRouteImport, } as any) const SetupsSetupIdRoute = SetupsSetupIdRouteImport.update({ id: '/setups/$setupId', path: '/setups/$setupId', getParentRoute: () => rootRouteImport, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/threads/$threadId': typeof ThreadsThreadIdRoute '/collection': typeof CollectionIndexRoute '/setups': typeof SetupsIndexRoute '/setups/$setupId': typeof SetupsSetupIdRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/threads/$threadId': typeof ThreadsThreadIdRoute '/collection': typeof CollectionIndexRoute '/setups': typeof SetupsIndexRoute '/setups/$setupId': typeof SetupsSetupIdRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/threads/$threadId': typeof ThreadsThreadIdRoute '/collection/': typeof CollectionIndexRoute '/setups/': typeof SetupsIndexRoute '/setups/$setupId': typeof SetupsSetupIdRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: '/' | '/threads/$threadId' | '/collection' | '/setups' | '/setups/$setupId' fileRoutesByTo: FileRoutesByTo to: '/' | '/threads/$threadId' | '/collection' | '/setups' | '/setups/$setupId' id: '__root__' | '/' | '/threads/$threadId' | '/collection/' | '/setups/' | '/setups/$setupId' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute ThreadsThreadIdRoute: typeof ThreadsThreadIdRoute CollectionIndexRoute: typeof CollectionIndexRoute SetupsIndexRoute: typeof SetupsIndexRoute SetupsSetupIdRoute: typeof SetupsSetupIdRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } '/threads/$threadId': { id: '/threads/$threadId' path: '/threads/$threadId' fullPath: '/threads/$threadId' preLoaderRoute: typeof ThreadsThreadIdRouteImport parentRoute: typeof rootRouteImport } '/collection/': { id: '/collection/' path: '/collection' fullPath: '/collection' preLoaderRoute: typeof CollectionIndexRouteImport parentRoute: typeof rootRouteImport } '/setups/': { id: '/setups/' path: '/setups' fullPath: '/setups' preLoaderRoute: typeof SetupsIndexRouteImport parentRoute: typeof rootRouteImport } '/setups/$setupId': { id: '/setups/$setupId' path: '/setups/$setupId' fullPath: '/setups/$setupId' preLoaderRoute: typeof SetupsSetupIdRouteImport parentRoute: typeof rootRouteImport } } } const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, ThreadsThreadIdRoute: ThreadsThreadIdRoute, CollectionIndexRoute: CollectionIndexRoute, SetupsIndexRoute: SetupsIndexRoute, SetupsSetupIdRoute: SetupsSetupIdRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()