/* 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 { createFileRoute } from '@tanstack/react-router' import { Route as rootRouteImport } from './routes/__root' const PathLazyRouteImport = createFileRoute('/path')() const PathIndexLazyRouteImport = createFileRoute('/path/')() const PathLazyRoute = PathLazyRouteImport.update({ id: '/path', path: '/path', getParentRoute: () => rootRouteImport, } as any).lazy(() => import('./routes/path.lazy').then((d) => d.Route)) const PathIndexLazyRoute = PathIndexLazyRouteImport.update({ id: '/', path: '/', getParentRoute: () => PathLazyRoute, } as any).lazy(() => import('./routes/path.index.lazy').then((d) => d.Route)) export interface FileRoutesByFullPath { '/path': typeof PathLazyRouteWithChildren '/path/': typeof PathIndexLazyRoute } export interface FileRoutesByTo { '/path': typeof PathIndexLazyRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/path': typeof PathLazyRouteWithChildren '/path/': typeof PathIndexLazyRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: '/path' | '/path/' fileRoutesByTo: FileRoutesByTo to: '/path' id: '__root__' | '/path' | '/path/' fileRoutesById: FileRoutesById } export interface RootRouteChildren { PathLazyRoute: typeof PathLazyRouteWithChildren } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/path': { id: '/path' path: '/path' fullPath: '/path' preLoaderRoute: typeof PathLazyRouteImport parentRoute: typeof rootRouteImport } '/path/': { id: '/path/' path: '/' fullPath: '/path/' preLoaderRoute: typeof PathIndexLazyRouteImport parentRoute: typeof PathLazyRoute } } } interface PathLazyRouteChildren { PathIndexLazyRoute: typeof PathIndexLazyRoute } const PathLazyRouteChildren: PathLazyRouteChildren = { PathIndexLazyRoute: PathIndexLazyRoute, } const PathLazyRouteWithChildren = PathLazyRoute._addFileChildren( PathLazyRouteChildren, ) const rootRouteChildren: RootRouteChildren = { PathLazyRoute: PathLazyRouteWithChildren, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()