This repository has been archived on 2025-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
bolderjara-serviss/frontend/src/routeTree.gen.ts

78 lines
2.0 KiB
TypeScript
Raw Normal View History

2025-07-02 14:51:00 +03:00
/* 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'
2025-07-02 22:25:03 +03:00
import { Route as UserIdRouteImport } from './routes/$userId'
2025-07-02 14:51:00 +03:00
import { Route as IndexRouteImport } from './routes/index'
2025-07-02 22:25:03 +03:00
const UserIdRoute = UserIdRouteImport.update({
id: '/$userId',
path: '/$userId',
getParentRoute: () => rootRouteImport,
} as any)
2025-07-02 14:51:00 +03:00
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
2025-07-02 22:25:03 +03:00
'/$userId': typeof UserIdRoute
2025-07-02 14:51:00 +03:00
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
2025-07-02 22:25:03 +03:00
'/$userId': typeof UserIdRoute
2025-07-02 14:51:00 +03:00
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
2025-07-02 22:25:03 +03:00
'/$userId': typeof UserIdRoute
2025-07-02 14:51:00 +03:00
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
2025-07-02 22:25:03 +03:00
fullPaths: '/' | '/$userId'
2025-07-02 14:51:00 +03:00
fileRoutesByTo: FileRoutesByTo
2025-07-02 22:25:03 +03:00
to: '/' | '/$userId'
id: '__root__' | '/' | '/$userId'
2025-07-02 14:51:00 +03:00
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
2025-07-02 22:25:03 +03:00
UserIdRoute: typeof UserIdRoute
2025-07-02 14:51:00 +03:00
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
2025-07-02 22:25:03 +03:00
'/$userId': {
id: '/$userId'
path: '/$userId'
fullPath: '/$userId'
preLoaderRoute: typeof UserIdRouteImport
parentRoute: typeof rootRouteImport
}
2025-07-02 14:51:00 +03:00
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
}
}
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
2025-07-02 22:25:03 +03:00
UserIdRoute: UserIdRoute,
2025-07-02 14:51:00 +03:00
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()