routeTree.gen.ts
1 /* prettier-ignore-start */ 2 3 /* eslint-disable */ 4 5 // @ts-nocheck 6 7 // noinspection JSUnusedGlobalSymbols 8 9 // This file is auto-generated by TanStack Router 10 11 // Import Routes 12 13 import { Route as rootRoute } from './routes/__root' 14 import { Route as IndexImport } from './routes/index' 15 16 // Create/Update Routes 17 18 const IndexRoute = IndexImport.update({ 19 path: '/', 20 getParentRoute: () => rootRoute, 21 } as any) 22 23 // Populate the FileRoutesByPath interface 24 25 declare module '@tanstack/react-router' { 26 interface FileRoutesByPath { 27 '/': { 28 id: '/' 29 path: '/' 30 fullPath: '/' 31 preLoaderRoute: typeof IndexImport 32 parentRoute: typeof rootRoute 33 } 34 } 35 } 36 37 // Create and export the route tree 38 39 export interface FileRoutesByFullPath { 40 '/': typeof IndexRoute 41 } 42 43 export interface FileRoutesByTo { 44 '/': typeof IndexRoute 45 } 46 47 export interface FileRoutesById { 48 __root__: typeof rootRoute 49 '/': typeof IndexRoute 50 } 51 52 export interface FileRouteTypes { 53 fileRoutesByFullPath: FileRoutesByFullPath 54 fullPaths: '/' 55 fileRoutesByTo: FileRoutesByTo 56 to: '/' 57 id: '__root__' | '/' 58 fileRoutesById: FileRoutesById 59 } 60 61 export interface RootRouteChildren { 62 IndexRoute: typeof IndexRoute 63 } 64 65 const rootRouteChildren: RootRouteChildren = { 66 IndexRoute: IndexRoute, 67 } 68 69 export const routeTree = rootRoute 70 ._addFileChildren(rootRouteChildren) 71 ._addFileTypes<FileRouteTypes>() 72 73 /* prettier-ignore-end */ 74 75 /* ROUTE_MANIFEST_START 76 { 77 "routes": { 78 "__root__": { 79 "filePath": "__root.tsx", 80 "children": [ 81 "/" 82 ] 83 }, 84 "/": { 85 "filePath": "index.tsx" 86 } 87 } 88 } 89 ROUTE_MANIFEST_END */