This commit is contained in:
2026-02-24 20:13:27 +08:00
parent 689460193b
commit a281a0e6e2
135 changed files with 442 additions and 18762 deletions

113
src/routeTree.gen.ts Normal file
View File

@@ -0,0 +1,113 @@
/* 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 ViewRouteImport } from './routes/view'
import { Route as ConsoleRouteImport } from './routes/console'
import { Route as IdRouteImport } from './routes/$id'
import { Route as IndexRouteImport } from './routes/index'
const ViewRoute = ViewRouteImport.update({
id: '/view',
path: '/view',
getParentRoute: () => rootRouteImport,
} as any)
const ConsoleRoute = ConsoleRouteImport.update({
id: '/console',
path: '/console',
getParentRoute: () => rootRouteImport,
} as any)
const IdRoute = IdRouteImport.update({
id: '/$id',
path: '/$id',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/$id': typeof IdRoute
'/console': typeof ConsoleRoute
'/view': typeof ViewRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
'/$id': typeof IdRoute
'/console': typeof ConsoleRoute
'/view': typeof ViewRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/$id': typeof IdRoute
'/console': typeof ConsoleRoute
'/view': typeof ViewRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths: '/' | '/$id' | '/console' | '/view'
fileRoutesByTo: FileRoutesByTo
to: '/' | '/$id' | '/console' | '/view'
id: '__root__' | '/' | '/$id' | '/console' | '/view'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
IdRoute: typeof IdRoute
ConsoleRoute: typeof ConsoleRoute
ViewRoute: typeof ViewRoute
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/view': {
id: '/view'
path: '/view'
fullPath: '/view'
preLoaderRoute: typeof ViewRouteImport
parentRoute: typeof rootRouteImport
}
'/console': {
id: '/console'
path: '/console'
fullPath: '/console'
preLoaderRoute: typeof ConsoleRouteImport
parentRoute: typeof rootRouteImport
}
'/$id': {
id: '/$id'
path: '/$id'
fullPath: '/$id'
preLoaderRoute: typeof IdRouteImport
parentRoute: typeof rootRouteImport
}
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
}
}
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
IdRoute: IdRoute,
ConsoleRoute: ConsoleRoute,
ViewRoute: ViewRoute,
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()