mono/packages/ui/src/routeTree.gen.ts
2026-03-21 20:18:25 +01:00

132 lines
3.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 WizardRouteImport } from './routes/wizard'
import { Route as ProfileRouteImport } from './routes/profile'
import { Route as NewRouteImport } from './routes/new'
import { Route as AuthRouteImport } from './routes/auth'
import { Route as IndexRouteImport } from './routes/index'
const WizardRoute = WizardRouteImport.update({
id: '/wizard',
path: '/wizard',
getParentRoute: () => rootRouteImport,
} as any)
const ProfileRoute = ProfileRouteImport.update({
id: '/profile',
path: '/profile',
getParentRoute: () => rootRouteImport,
} as any)
const NewRoute = NewRouteImport.update({
id: '/new',
path: '/new',
getParentRoute: () => rootRouteImport,
} as any)
const AuthRoute = AuthRouteImport.update({
id: '/auth',
path: '/auth',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/auth': typeof AuthRoute
'/new': typeof NewRoute
'/profile': typeof ProfileRoute
'/wizard': typeof WizardRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
'/auth': typeof AuthRoute
'/new': typeof NewRoute
'/profile': typeof ProfileRoute
'/wizard': typeof WizardRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/auth': typeof AuthRoute
'/new': typeof NewRoute
'/profile': typeof ProfileRoute
'/wizard': typeof WizardRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths: '/' | '/auth' | '/new' | '/profile' | '/wizard'
fileRoutesByTo: FileRoutesByTo
to: '/' | '/auth' | '/new' | '/profile' | '/wizard'
id: '__root__' | '/' | '/auth' | '/new' | '/profile' | '/wizard'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AuthRoute: typeof AuthRoute
NewRoute: typeof NewRoute
ProfileRoute: typeof ProfileRoute
WizardRoute: typeof WizardRoute
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/wizard': {
id: '/wizard'
path: '/wizard'
fullPath: '/wizard'
preLoaderRoute: typeof WizardRouteImport
parentRoute: typeof rootRouteImport
}
'/profile': {
id: '/profile'
path: '/profile'
fullPath: '/profile'
preLoaderRoute: typeof ProfileRouteImport
parentRoute: typeof rootRouteImport
}
'/new': {
id: '/new'
path: '/new'
fullPath: '/new'
preLoaderRoute: typeof NewRouteImport
parentRoute: typeof rootRouteImport
}
'/auth': {
id: '/auth'
path: '/auth'
fullPath: '/auth'
preLoaderRoute: typeof AuthRouteImport
parentRoute: typeof rootRouteImport
}
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
}
}
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AuthRoute: AuthRoute,
NewRoute: NewRoute,
ProfileRoute: ProfileRoute,
WizardRoute: WizardRoute,
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()