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