/
PaSol
/
client-foresigh
Обзор
Документация
Войти
/
PaSol
/
client-foresigh
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
patch
src/routeTree.gen.ts
77 строк
2 KB
gpt-engineer-app[bot]
Changes
08 май 2026, 00:30
08 май 2026, 00:30
04fb72d
Код
Авторство
О чём код?
/* 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 IndexRouteImport } from './routes/index' import { Route as OpportunityIdRouteImport } from './routes/opportunity.$id' const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) const OpportunityIdRoute = OpportunityIdRouteImport.update({ id: '/opportunity/$id', path: '/opportunity/$id', getParentRoute: () => rootRouteImport, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/opportunity/$id': typeof OpportunityIdRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/opportunity/$id': typeof OpportunityIdRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/opportunity/$id': typeof OpportunityIdRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: '/' | '/opportunity/$id' fileRoutesByTo: FileRoutesByTo to: '/' | '/opportunity/$id' id: '__root__' | '/' | '/opportunity/$id' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute OpportunityIdRoute: typeof OpportunityIdRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } '/opportunity/$id': { id: '/opportunity/$id' path: '/opportunity/$id' fullPath: '/opportunity/$id' preLoaderRoute: typeof OpportunityIdRouteImport parentRoute: typeof rootRouteImport } } } const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, OpportunityIdRoute: OpportunityIdRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes<FileRouteTypes>()