this repo has no description
at main 95 lines 2.7 kB view raw
1/* eslint-disable */ 2 3// @ts-nocheck 4 5// noinspection JSUnusedGlobalSymbols 6 7// This file was automatically generated by TanStack Router. 8// You should NOT make any changes in this file as it will be overwritten. 9// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified. 10 11import { Route as rootRouteImport } from './routes/__root' 12import { Route as AboutRouteImport } from './routes/about' 13import { Route as IndexRouteImport } from './routes/index' 14import { Route as ProfileDidRouteImport } from './routes/profile/$did' 15 16const AboutRoute = AboutRouteImport.update({ 17 id: '/about', 18 path: '/about', 19 getParentRoute: () => rootRouteImport, 20} as any) 21const IndexRoute = IndexRouteImport.update({ 22 id: '/', 23 path: '/', 24 getParentRoute: () => rootRouteImport, 25} as any) 26const ProfileDidRoute = ProfileDidRouteImport.update({ 27 id: '/profile/$did', 28 path: '/profile/$did', 29 getParentRoute: () => rootRouteImport, 30} as any) 31 32export interface FileRoutesByFullPath { 33 '/': typeof IndexRoute 34 '/about': typeof AboutRoute 35 '/profile/$did': typeof ProfileDidRoute 36} 37export interface FileRoutesByTo { 38 '/': typeof IndexRoute 39 '/about': typeof AboutRoute 40 '/profile/$did': typeof ProfileDidRoute 41} 42export interface FileRoutesById { 43 __root__: typeof rootRouteImport 44 '/': typeof IndexRoute 45 '/about': typeof AboutRoute 46 '/profile/$did': typeof ProfileDidRoute 47} 48export interface FileRouteTypes { 49 fileRoutesByFullPath: FileRoutesByFullPath 50 fullPaths: '/' | '/about' | '/profile/$did' 51 fileRoutesByTo: FileRoutesByTo 52 to: '/' | '/about' | '/profile/$did' 53 id: '__root__' | '/' | '/about' | '/profile/$did' 54 fileRoutesById: FileRoutesById 55} 56export interface RootRouteChildren { 57 IndexRoute: typeof IndexRoute 58 AboutRoute: typeof AboutRoute 59 ProfileDidRoute: typeof ProfileDidRoute 60} 61 62declare module '@tanstack/react-router' { 63 interface FileRoutesByPath { 64 '/about': { 65 id: '/about' 66 path: '/about' 67 fullPath: '/about' 68 preLoaderRoute: typeof AboutRouteImport 69 parentRoute: typeof rootRouteImport 70 } 71 '/': { 72 id: '/' 73 path: '/' 74 fullPath: '/' 75 preLoaderRoute: typeof IndexRouteImport 76 parentRoute: typeof rootRouteImport 77 } 78 '/profile/$did': { 79 id: '/profile/$did' 80 path: '/profile/$did' 81 fullPath: '/profile/$did' 82 preLoaderRoute: typeof ProfileDidRouteImport 83 parentRoute: typeof rootRouteImport 84 } 85 } 86} 87 88const rootRouteChildren: RootRouteChildren = { 89 IndexRoute: IndexRoute, 90 AboutRoute: AboutRoute, 91 ProfileDidRoute: ProfileDidRoute, 92} 93export const routeTree = rootRouteImport 94 ._addFileChildren(rootRouteChildren) 95 ._addFileTypes<FileRouteTypes>()