Files
website/packages/webapp/src/routeTree.gen.ts
T
Thilawyn 82904cf000
Build / build (push) Successful in 56s
Lint / lint (push) Failing after 11s
Move Pazisme Mod page to a standalone HTML (#86)
Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Co-authored-by: Renovate Bot <renovate-bot@valverde.cloud>
Reviewed-on: #86
2026-05-19 19:20:39 +02:00

83 lines
2.1 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 MainRouteImport } from './routes/_main'
import { Route as MainIndexRouteImport } from './routes/_main.index'
const MainRoute = MainRouteImport.update({
id: '/_main',
getParentRoute: () => rootRouteImport,
} as any)
const MainIndexRoute = MainIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => MainRoute,
} as any)
export interface FileRoutesByFullPath {
'/': typeof MainIndexRoute
}
export interface FileRoutesByTo {
'/': typeof MainIndexRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/_main': typeof MainRouteWithChildren
'/_main/': typeof MainIndexRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths: '/'
fileRoutesByTo: FileRoutesByTo
to: '/'
id: '__root__' | '/_main' | '/_main/'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
MainRoute: typeof MainRouteWithChildren
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/_main': {
id: '/_main'
path: ''
fullPath: '/'
preLoaderRoute: typeof MainRouteImport
parentRoute: typeof rootRouteImport
}
'/_main/': {
id: '/_main/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof MainIndexRouteImport
parentRoute: typeof MainRoute
}
}
}
interface MainRouteChildren {
MainIndexRoute: typeof MainIndexRoute
}
const MainRouteChildren: MainRouteChildren = {
MainIndexRoute: MainIndexRoute,
}
const MainRouteWithChildren = MainRoute._addFileChildren(MainRouteChildren)
const rootRouteChildren: RootRouteChildren = {
MainRoute: MainRouteWithChildren,
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()