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