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