/* 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 UserIdRouteImport } from './routes/$userId' import { Route as IndexRouteImport } from './routes/index' const UserIdRoute = UserIdRouteImport.update({ id: '/$userId', path: '/$userId', getParentRoute: () => rootRouteImport, } as any) const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/$userId': typeof UserIdRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/$userId': typeof UserIdRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/$userId': typeof UserIdRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: '/' | '/$userId' fileRoutesByTo: FileRoutesByTo to: '/' | '/$userId' id: '__root__' | '/' | '/$userId' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute UserIdRoute: typeof UserIdRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/$userId': { id: '/$userId' path: '/$userId' fullPath: '/$userId' preLoaderRoute: typeof UserIdRouteImport parentRoute: typeof rootRouteImport } '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } } } const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, UserIdRoute: UserIdRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()