/* 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 LoginRouteImport } from './routes/login' import { Route as DashboardRouteImport } from './routes/dashboard' import { Route as IndexRouteImport } from './routes/index' import { Route as DemoTanstackQueryRouteImport } from './routes/demo/tanstack-query' import { Route as PlanesListaRouteRouteImport } from './routes/planes/_lista/route' import { Route as PlanesPlanIdRouteRouteImport } from './routes/planes/$planId/route' import { Route as PlanesListaNuevoRouteImport } from './routes/planes/_lista/nuevo' const LoginRoute = LoginRouteImport.update({ id: '/login', path: '/login', getParentRoute: () => rootRouteImport, } as any) const DashboardRoute = DashboardRouteImport.update({ id: '/dashboard', path: '/dashboard', getParentRoute: () => rootRouteImport, } as any) const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) const DemoTanstackQueryRoute = DemoTanstackQueryRouteImport.update({ id: '/demo/tanstack-query', path: '/demo/tanstack-query', getParentRoute: () => rootRouteImport, } as any) const PlanesListaRouteRoute = PlanesListaRouteRouteImport.update({ id: '/planes/_lista', path: '/planes', getParentRoute: () => rootRouteImport, } as any) const PlanesPlanIdRouteRoute = PlanesPlanIdRouteRouteImport.update({ id: '/planes/$planId', path: '/planes/$planId', getParentRoute: () => rootRouteImport, } as any) const PlanesListaNuevoRoute = PlanesListaNuevoRouteImport.update({ id: '/nuevo', path: '/nuevo', getParentRoute: () => PlanesListaRouteRoute, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/dashboard': typeof DashboardRoute '/login': typeof LoginRoute '/planes/$planId': typeof PlanesPlanIdRouteRoute '/planes': typeof PlanesListaRouteRouteWithChildren '/demo/tanstack-query': typeof DemoTanstackQueryRoute '/planes/nuevo': typeof PlanesListaNuevoRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/dashboard': typeof DashboardRoute '/login': typeof LoginRoute '/planes/$planId': typeof PlanesPlanIdRouteRoute '/planes': typeof PlanesListaRouteRouteWithChildren '/demo/tanstack-query': typeof DemoTanstackQueryRoute '/planes/nuevo': typeof PlanesListaNuevoRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/dashboard': typeof DashboardRoute '/login': typeof LoginRoute '/planes/$planId': typeof PlanesPlanIdRouteRoute '/planes/_lista': typeof PlanesListaRouteRouteWithChildren '/demo/tanstack-query': typeof DemoTanstackQueryRoute '/planes/_lista/nuevo': typeof PlanesListaNuevoRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: | '/' | '/dashboard' | '/login' | '/planes/$planId' | '/planes' | '/demo/tanstack-query' | '/planes/nuevo' fileRoutesByTo: FileRoutesByTo to: | '/' | '/dashboard' | '/login' | '/planes/$planId' | '/planes' | '/demo/tanstack-query' | '/planes/nuevo' id: | '__root__' | '/' | '/dashboard' | '/login' | '/planes/$planId' | '/planes/_lista' | '/demo/tanstack-query' | '/planes/_lista/nuevo' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute DashboardRoute: typeof DashboardRoute LoginRoute: typeof LoginRoute PlanesPlanIdRouteRoute: typeof PlanesPlanIdRouteRoute PlanesListaRouteRoute: typeof PlanesListaRouteRouteWithChildren DemoTanstackQueryRoute: typeof DemoTanstackQueryRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/login': { id: '/login' path: '/login' fullPath: '/login' preLoaderRoute: typeof LoginRouteImport parentRoute: typeof rootRouteImport } '/dashboard': { id: '/dashboard' path: '/dashboard' fullPath: '/dashboard' preLoaderRoute: typeof DashboardRouteImport parentRoute: typeof rootRouteImport } '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } '/demo/tanstack-query': { id: '/demo/tanstack-query' path: '/demo/tanstack-query' fullPath: '/demo/tanstack-query' preLoaderRoute: typeof DemoTanstackQueryRouteImport parentRoute: typeof rootRouteImport } '/planes/_lista': { id: '/planes/_lista' path: '/planes' fullPath: '/planes' preLoaderRoute: typeof PlanesListaRouteRouteImport parentRoute: typeof rootRouteImport } '/planes/$planId': { id: '/planes/$planId' path: '/planes/$planId' fullPath: '/planes/$planId' preLoaderRoute: typeof PlanesPlanIdRouteRouteImport parentRoute: typeof rootRouteImport } '/planes/_lista/nuevo': { id: '/planes/_lista/nuevo' path: '/nuevo' fullPath: '/planes/nuevo' preLoaderRoute: typeof PlanesListaNuevoRouteImport parentRoute: typeof PlanesListaRouteRoute } } } interface PlanesListaRouteRouteChildren { PlanesListaNuevoRoute: typeof PlanesListaNuevoRoute } const PlanesListaRouteRouteChildren: PlanesListaRouteRouteChildren = { PlanesListaNuevoRoute: PlanesListaNuevoRoute, } const PlanesListaRouteRouteWithChildren = PlanesListaRouteRoute._addFileChildren(PlanesListaRouteRouteChildren) const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, DashboardRoute: DashboardRoute, LoginRoute: LoginRoute, PlanesPlanIdRouteRoute: PlanesPlanIdRouteRoute, PlanesListaRouteRoute: PlanesListaRouteRouteWithChildren, DemoTanstackQueryRoute: DemoTanstackQueryRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()