routeTree.gen
This commit is contained in:
@@ -37,9 +37,9 @@ const IndexRoute = IndexRouteImport.update({
|
|||||||
getParentRoute: () => rootRouteImport,
|
getParentRoute: () => rootRouteImport,
|
||||||
} as any)
|
} as any)
|
||||||
const PlanesIndexRoute = PlanesIndexRouteImport.update({
|
const PlanesIndexRoute = PlanesIndexRouteImport.update({
|
||||||
id: '/planes/',
|
id: '/',
|
||||||
path: '/planes/',
|
path: '/',
|
||||||
getParentRoute: () => rootRouteImport,
|
getParentRoute: () => PlanesRoute,
|
||||||
} as any)
|
} as any)
|
||||||
const DemoTanstackQueryRoute = DemoTanstackQueryRouteImport.update({
|
const DemoTanstackQueryRoute = DemoTanstackQueryRouteImport.update({
|
||||||
id: '/demo/tanstack-query',
|
id: '/demo/tanstack-query',
|
||||||
@@ -51,15 +51,14 @@ export interface FileRoutesByFullPath {
|
|||||||
'/': typeof IndexRoute
|
'/': typeof IndexRoute
|
||||||
'/dashboard': typeof DashboardRoute
|
'/dashboard': typeof DashboardRoute
|
||||||
'/login': typeof LoginRoute
|
'/login': typeof LoginRoute
|
||||||
'/planes': typeof PlanesRoute
|
'/planes': typeof PlanesRouteWithChildren
|
||||||
'/demo/tanstack-query': typeof DemoTanstackQueryRoute
|
'/demo/tanstack-query': typeof DemoTanstackQueryRoute
|
||||||
'/planes': typeof PlanesIndexRoute
|
'/planes/': typeof PlanesIndexRoute
|
||||||
}
|
}
|
||||||
export interface FileRoutesByTo {
|
export interface FileRoutesByTo {
|
||||||
'/': typeof IndexRoute
|
'/': typeof IndexRoute
|
||||||
'/dashboard': typeof DashboardRoute
|
'/dashboard': typeof DashboardRoute
|
||||||
'/login': typeof LoginRoute
|
'/login': typeof LoginRoute
|
||||||
'/planes': typeof PlanesRoute
|
|
||||||
'/demo/tanstack-query': typeof DemoTanstackQueryRoute
|
'/demo/tanstack-query': typeof DemoTanstackQueryRoute
|
||||||
'/planes': typeof PlanesIndexRoute
|
'/planes': typeof PlanesIndexRoute
|
||||||
}
|
}
|
||||||
@@ -68,42 +67,37 @@ export interface FileRoutesById {
|
|||||||
'/': typeof IndexRoute
|
'/': typeof IndexRoute
|
||||||
'/dashboard': typeof DashboardRoute
|
'/dashboard': typeof DashboardRoute
|
||||||
'/login': typeof LoginRoute
|
'/login': typeof LoginRoute
|
||||||
'/planes': typeof PlanesRoute
|
'/planes': typeof PlanesRouteWithChildren
|
||||||
'/demo/tanstack-query': typeof DemoTanstackQueryRoute
|
'/demo/tanstack-query': typeof DemoTanstackQueryRoute
|
||||||
'/planes/': typeof PlanesIndexRoute
|
'/planes/': typeof PlanesIndexRoute
|
||||||
}
|
}
|
||||||
export interface FileRouteTypes {
|
export interface FileRouteTypes {
|
||||||
fileRoutesByFullPath: FileRoutesByFullPath
|
fileRoutesByFullPath: FileRoutesByFullPath
|
||||||
<<<<<<< HEAD
|
fullPaths:
|
||||||
fullPaths: '/' | '/dashboard' | '/login' | '/planes' | '/demo/tanstack-query'
|
| '/'
|
||||||
fileRoutesByTo: FileRoutesByTo
|
| '/dashboard'
|
||||||
to: '/' | '/dashboard' | '/login' | '/planes' | '/demo/tanstack-query'
|
| '/login'
|
||||||
=======
|
| '/planes'
|
||||||
fullPaths: '/' | '/dashboard' | '/login' | '/demo/tanstack-query' | '/planes'
|
| '/demo/tanstack-query'
|
||||||
|
| '/planes/'
|
||||||
fileRoutesByTo: FileRoutesByTo
|
fileRoutesByTo: FileRoutesByTo
|
||||||
to: '/' | '/dashboard' | '/login' | '/demo/tanstack-query' | '/planes'
|
to: '/' | '/dashboard' | '/login' | '/demo/tanstack-query' | '/planes'
|
||||||
>>>>>>> origin/main
|
|
||||||
id:
|
id:
|
||||||
| '__root__'
|
| '__root__'
|
||||||
| '/'
|
| '/'
|
||||||
| '/dashboard'
|
| '/dashboard'
|
||||||
| '/login'
|
| '/login'
|
||||||
<<<<<<< HEAD
|
|
||||||
| '/planes'
|
| '/planes'
|
||||||
| '/demo/tanstack-query'
|
| '/demo/tanstack-query'
|
||||||
=======
|
|
||||||
| '/demo/tanstack-query'
|
|
||||||
| '/planes/'
|
| '/planes/'
|
||||||
>>>>>>> origin/main
|
|
||||||
fileRoutesById: FileRoutesById
|
fileRoutesById: FileRoutesById
|
||||||
}
|
}
|
||||||
export interface RootRouteChildren {
|
export interface RootRouteChildren {
|
||||||
IndexRoute: typeof IndexRoute
|
IndexRoute: typeof IndexRoute
|
||||||
DashboardRoute: typeof DashboardRoute
|
DashboardRoute: typeof DashboardRoute
|
||||||
LoginRoute: typeof LoginRoute
|
LoginRoute: typeof LoginRoute
|
||||||
PlanesRoute: typeof PlanesRoute
|
PlanesRoute: typeof PlanesRouteWithChildren
|
||||||
DemoTanstackQueryRoute: typeof DemoTanstackQueryRoute
|
DemoTanstackQueryRoute: typeof DemoTanstackQueryRoute
|
||||||
PlanesIndexRoute: typeof PlanesIndexRoute
|
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module '@tanstack/react-router' {
|
declare module '@tanstack/react-router' {
|
||||||
@@ -138,10 +132,10 @@ declare module '@tanstack/react-router' {
|
|||||||
}
|
}
|
||||||
'/planes/': {
|
'/planes/': {
|
||||||
id: '/planes/'
|
id: '/planes/'
|
||||||
path: '/planes'
|
path: '/'
|
||||||
fullPath: '/planes'
|
fullPath: '/planes/'
|
||||||
preLoaderRoute: typeof PlanesIndexRouteImport
|
preLoaderRoute: typeof PlanesIndexRouteImport
|
||||||
parentRoute: typeof rootRouteImport
|
parentRoute: typeof PlanesRoute
|
||||||
}
|
}
|
||||||
'/demo/tanstack-query': {
|
'/demo/tanstack-query': {
|
||||||
id: '/demo/tanstack-query'
|
id: '/demo/tanstack-query'
|
||||||
@@ -153,13 +147,23 @@ declare module '@tanstack/react-router' {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface PlanesRouteChildren {
|
||||||
|
PlanesIndexRoute: typeof PlanesIndexRoute
|
||||||
|
}
|
||||||
|
|
||||||
|
const PlanesRouteChildren: PlanesRouteChildren = {
|
||||||
|
PlanesIndexRoute: PlanesIndexRoute,
|
||||||
|
}
|
||||||
|
|
||||||
|
const PlanesRouteWithChildren =
|
||||||
|
PlanesRoute._addFileChildren(PlanesRouteChildren)
|
||||||
|
|
||||||
const rootRouteChildren: RootRouteChildren = {
|
const rootRouteChildren: RootRouteChildren = {
|
||||||
IndexRoute: IndexRoute,
|
IndexRoute: IndexRoute,
|
||||||
DashboardRoute: DashboardRoute,
|
DashboardRoute: DashboardRoute,
|
||||||
LoginRoute: LoginRoute,
|
LoginRoute: LoginRoute,
|
||||||
PlanesRoute: PlanesRoute,
|
PlanesRoute: PlanesRouteWithChildren,
|
||||||
DemoTanstackQueryRoute: DemoTanstackQueryRoute,
|
DemoTanstackQueryRoute: DemoTanstackQueryRoute,
|
||||||
PlanesIndexRoute: PlanesIndexRoute,
|
|
||||||
}
|
}
|
||||||
export const routeTree = rootRouteImport
|
export const routeTree = rootRouteImport
|
||||||
._addFileChildren(rootRouteChildren)
|
._addFileChildren(rootRouteChildren)
|
||||||
|
|||||||
Reference in New Issue
Block a user