Files
Firefly_Launcher/frontend/src/routeTree.gen.ts
2025-08-25 18:12:13 +07:00

190 lines
4.9 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 SrtoolsRouteImport } from './routes/srtools'
import { Route as LanguageRouteImport } from './routes/language'
import { Route as HowtoRouteImport } from './routes/howto'
import { Route as DiffRouteImport } from './routes/diff'
import { Route as AnalysisRouteImport } from './routes/analysis'
import { Route as AboutRouteImport } from './routes/about'
import { Route as IndexRouteImport } from './routes/index'
const SrtoolsRoute = SrtoolsRouteImport.update({
id: '/srtools',
path: '/srtools',
getParentRoute: () => rootRouteImport,
} as any)
const LanguageRoute = LanguageRouteImport.update({
id: '/language',
path: '/language',
getParentRoute: () => rootRouteImport,
} as any)
const HowtoRoute = HowtoRouteImport.update({
id: '/howto',
path: '/howto',
getParentRoute: () => rootRouteImport,
} as any)
const DiffRoute = DiffRouteImport.update({
id: '/diff',
path: '/diff',
getParentRoute: () => rootRouteImport,
} as any)
const AnalysisRoute = AnalysisRouteImport.update({
id: '/analysis',
path: '/analysis',
getParentRoute: () => rootRouteImport,
} as any)
const AboutRoute = AboutRouteImport.update({
id: '/about',
path: '/about',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/about': typeof AboutRoute
'/analysis': typeof AnalysisRoute
'/diff': typeof DiffRoute
'/howto': typeof HowtoRoute
'/language': typeof LanguageRoute
'/srtools': typeof SrtoolsRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
'/about': typeof AboutRoute
'/analysis': typeof AnalysisRoute
'/diff': typeof DiffRoute
'/howto': typeof HowtoRoute
'/language': typeof LanguageRoute
'/srtools': typeof SrtoolsRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/about': typeof AboutRoute
'/analysis': typeof AnalysisRoute
'/diff': typeof DiffRoute
'/howto': typeof HowtoRoute
'/language': typeof LanguageRoute
'/srtools': typeof SrtoolsRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/'
| '/about'
| '/analysis'
| '/diff'
| '/howto'
| '/language'
| '/srtools'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
| '/about'
| '/analysis'
| '/diff'
| '/howto'
| '/language'
| '/srtools'
id:
| '__root__'
| '/'
| '/about'
| '/analysis'
| '/diff'
| '/howto'
| '/language'
| '/srtools'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AboutRoute: typeof AboutRoute
AnalysisRoute: typeof AnalysisRoute
DiffRoute: typeof DiffRoute
HowtoRoute: typeof HowtoRoute
LanguageRoute: typeof LanguageRoute
SrtoolsRoute: typeof SrtoolsRoute
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/srtools': {
id: '/srtools'
path: '/srtools'
fullPath: '/srtools'
preLoaderRoute: typeof SrtoolsRouteImport
parentRoute: typeof rootRouteImport
}
'/language': {
id: '/language'
path: '/language'
fullPath: '/language'
preLoaderRoute: typeof LanguageRouteImport
parentRoute: typeof rootRouteImport
}
'/howto': {
id: '/howto'
path: '/howto'
fullPath: '/howto'
preLoaderRoute: typeof HowtoRouteImport
parentRoute: typeof rootRouteImport
}
'/diff': {
id: '/diff'
path: '/diff'
fullPath: '/diff'
preLoaderRoute: typeof DiffRouteImport
parentRoute: typeof rootRouteImport
}
'/analysis': {
id: '/analysis'
path: '/analysis'
fullPath: '/analysis'
preLoaderRoute: typeof AnalysisRouteImport
parentRoute: typeof rootRouteImport
}
'/about': {
id: '/about'
path: '/about'
fullPath: '/about'
preLoaderRoute: typeof AboutRouteImport
parentRoute: typeof rootRouteImport
}
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
}
}
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AboutRoute: AboutRoute,
AnalysisRoute: AnalysisRoute,
DiffRoute: DiffRoute,
HowtoRoute: HowtoRoute,
LanguageRoute: LanguageRoute,
SrtoolsRoute: SrtoolsRoute,
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()