Co-authored-by: Julien Valverdé <julien.valverde@mailo.com> Reviewed-on: #5
169 lines
4.6 KiB
TypeScript
169 lines
4.6 KiB
TypeScript
/* 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 FormRouteImport } from './routes/form'
|
|
import { Route as BlankRouteImport } from './routes/blank'
|
|
import { Route as IndexRouteImport } from './routes/index'
|
|
import { Route as DevMemoRouteImport } from './routes/dev/memo'
|
|
import { Route as DevInputRouteImport } from './routes/dev/input'
|
|
import { Route as DevAsyncRenderingRouteImport } from './routes/dev/async-rendering'
|
|
|
|
const FormRoute = FormRouteImport.update({
|
|
id: '/form',
|
|
path: '/form',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const BlankRoute = BlankRouteImport.update({
|
|
id: '/blank',
|
|
path: '/blank',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const IndexRoute = IndexRouteImport.update({
|
|
id: '/',
|
|
path: '/',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const DevMemoRoute = DevMemoRouteImport.update({
|
|
id: '/dev/memo',
|
|
path: '/dev/memo',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const DevInputRoute = DevInputRouteImport.update({
|
|
id: '/dev/input',
|
|
path: '/dev/input',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
const DevAsyncRenderingRoute = DevAsyncRenderingRouteImport.update({
|
|
id: '/dev/async-rendering',
|
|
path: '/dev/async-rendering',
|
|
getParentRoute: () => rootRouteImport,
|
|
} as any)
|
|
|
|
export interface FileRoutesByFullPath {
|
|
'/': typeof IndexRoute
|
|
'/blank': typeof BlankRoute
|
|
'/form': typeof FormRoute
|
|
'/dev/async-rendering': typeof DevAsyncRenderingRoute
|
|
'/dev/input': typeof DevInputRoute
|
|
'/dev/memo': typeof DevMemoRoute
|
|
}
|
|
export interface FileRoutesByTo {
|
|
'/': typeof IndexRoute
|
|
'/blank': typeof BlankRoute
|
|
'/form': typeof FormRoute
|
|
'/dev/async-rendering': typeof DevAsyncRenderingRoute
|
|
'/dev/input': typeof DevInputRoute
|
|
'/dev/memo': typeof DevMemoRoute
|
|
}
|
|
export interface FileRoutesById {
|
|
__root__: typeof rootRouteImport
|
|
'/': typeof IndexRoute
|
|
'/blank': typeof BlankRoute
|
|
'/form': typeof FormRoute
|
|
'/dev/async-rendering': typeof DevAsyncRenderingRoute
|
|
'/dev/input': typeof DevInputRoute
|
|
'/dev/memo': typeof DevMemoRoute
|
|
}
|
|
export interface FileRouteTypes {
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
fullPaths:
|
|
| '/'
|
|
| '/blank'
|
|
| '/form'
|
|
| '/dev/async-rendering'
|
|
| '/dev/input'
|
|
| '/dev/memo'
|
|
fileRoutesByTo: FileRoutesByTo
|
|
to:
|
|
| '/'
|
|
| '/blank'
|
|
| '/form'
|
|
| '/dev/async-rendering'
|
|
| '/dev/input'
|
|
| '/dev/memo'
|
|
id:
|
|
| '__root__'
|
|
| '/'
|
|
| '/blank'
|
|
| '/form'
|
|
| '/dev/async-rendering'
|
|
| '/dev/input'
|
|
| '/dev/memo'
|
|
fileRoutesById: FileRoutesById
|
|
}
|
|
export interface RootRouteChildren {
|
|
IndexRoute: typeof IndexRoute
|
|
BlankRoute: typeof BlankRoute
|
|
FormRoute: typeof FormRoute
|
|
DevAsyncRenderingRoute: typeof DevAsyncRenderingRoute
|
|
DevInputRoute: typeof DevInputRoute
|
|
DevMemoRoute: typeof DevMemoRoute
|
|
}
|
|
|
|
declare module '@tanstack/react-router' {
|
|
interface FileRoutesByPath {
|
|
'/form': {
|
|
id: '/form'
|
|
path: '/form'
|
|
fullPath: '/form'
|
|
preLoaderRoute: typeof FormRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/blank': {
|
|
id: '/blank'
|
|
path: '/blank'
|
|
fullPath: '/blank'
|
|
preLoaderRoute: typeof BlankRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/': {
|
|
id: '/'
|
|
path: '/'
|
|
fullPath: '/'
|
|
preLoaderRoute: typeof IndexRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/dev/memo': {
|
|
id: '/dev/memo'
|
|
path: '/dev/memo'
|
|
fullPath: '/dev/memo'
|
|
preLoaderRoute: typeof DevMemoRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/dev/input': {
|
|
id: '/dev/input'
|
|
path: '/dev/input'
|
|
fullPath: '/dev/input'
|
|
preLoaderRoute: typeof DevInputRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
'/dev/async-rendering': {
|
|
id: '/dev/async-rendering'
|
|
path: '/dev/async-rendering'
|
|
fullPath: '/dev/async-rendering'
|
|
preLoaderRoute: typeof DevAsyncRenderingRouteImport
|
|
parentRoute: typeof rootRouteImport
|
|
}
|
|
}
|
|
}
|
|
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
IndexRoute: IndexRoute,
|
|
BlankRoute: BlankRoute,
|
|
FormRoute: FormRoute,
|
|
DevAsyncRenderingRoute: DevAsyncRenderingRoute,
|
|
DevInputRoute: DevInputRoute,
|
|
DevMemoRoute: DevMemoRoute,
|
|
}
|
|
export const routeTree = rootRouteImport
|
|
._addFileChildren(rootRouteChildren)
|
|
._addFileTypes<FileRouteTypes>()
|