/* 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 Char123LocaleChar125AboutIndexRouteImport } from './routes/{-$locale}/about/index';
import { Route as Char123LocaleChar125IndexRouteImport } from './routes/{-$locale}/index';
import { Route as Char123LocaleChar125RouteRouteImport } from './routes/{-$locale}/route';
const Char123LocaleChar125RouteRoute =
Char123LocaleChar125RouteRouteImport.update({
id: '/{-$locale}',
path: '/{-$locale}',
getParentRoute: () => rootRouteImport,
} as any);
const Char123LocaleChar125IndexRoute =
Char123LocaleChar125IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => Char123LocaleChar125RouteRoute,
} as any);
const Char123LocaleChar125AboutIndexRoute =
Char123LocaleChar125AboutIndexRouteImport.update({
id: '/about/',
path: '/about/',
getParentRoute: () => Char123LocaleChar125RouteRoute,
} as any);
export interface FileRoutesByFullPath {
'/{-$locale}': typeof Char123LocaleChar125RouteRouteWithChildren;
'/{-$locale}/': typeof Char123LocaleChar125IndexRoute;
'/{-$locale}/about': typeof Char123LocaleChar125AboutIndexRoute;
}
export interface FileRoutesByTo {
'/{-$locale}': typeof Char123LocaleChar125IndexRoute;
'/{-$locale}/about': typeof Char123LocaleChar125AboutIndexRoute;
}
export interface FileRoutesById {
__root__: typeof rootRouteImport;
'/{-$locale}': typeof Char123LocaleChar125RouteRouteWithChildren;
'/{-$locale}/': typeof Char123LocaleChar125IndexRoute;
'/{-$locale}/about/': typeof Char123LocaleChar125AboutIndexRoute;
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath;
fullPaths: '/{-$locale}' | '/{-$locale}/' | '/{-$locale}/about';
fileRoutesByTo: FileRoutesByTo;
to: '/{-$locale}' | '/{-$locale}/about';
id: '__root__' | '/{-$locale}' | '/{-$locale}/' | '/{-$locale}/about/';
fileRoutesById: FileRoutesById;
}
export interface RootRouteChildren {
Char123LocaleChar125RouteRoute: typeof Char123LocaleChar125RouteRouteWithChildren;
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/{-$locale}': {
id: '/{-$locale}';
path: '/{-$locale}';
fullPath: '/{-$locale}';
preLoaderRoute: typeof Char123LocaleChar125RouteRouteImport;
parentRoute: typeof rootRouteImport;
};
'/{-$locale}/': {
id: '/{-$locale}/';
path: '/';
fullPath: '/{-$locale}/';
preLoaderRoute: typeof Char123LocaleChar125IndexRouteImport;
parentRoute: typeof Char123LocaleChar125RouteRoute;
};
'/{-$locale}/about/': {
id: '/{-$locale}/about/';
path: '/about';
fullPath: '/{-$locale}/about';
preLoaderRoute: typeof Char123LocaleChar125AboutIndexRouteImport;
parentRoute: typeof Char123LocaleChar125RouteRoute;
};
}
}
interface Char123LocaleChar125RouteRouteChildren {
Char123LocaleChar125IndexRoute: typeof Char123LocaleChar125IndexRoute;
Char123LocaleChar125AboutIndexRoute: typeof Char123LocaleChar125AboutIndexRoute;
}
const Char123LocaleChar125RouteRouteChildren: Char123LocaleChar125RouteRouteChildren =
{
Char123LocaleChar125IndexRoute: Char123LocaleChar125IndexRoute,
Char123LocaleChar125AboutIndexRoute: Char123LocaleChar125AboutIndexRoute,
};
const Char123LocaleChar125RouteRouteWithChildren =
Char123LocaleChar125RouteRoute._addFileChildren(
Char123LocaleChar125RouteRouteChildren
);
const rootRouteChildren: RootRouteChildren = {
Char123LocaleChar125RouteRoute: Char123LocaleChar125RouteRouteWithChildren,
};
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>();
import type { createStart } from '@tanstack/react-start';
import type { getRouter } from './router.tsx';
declare module '@tanstack/react-start' {
interface Register {
ssr: true;
router: Awaited<ReturnType<typeof getRouter>>;
}
}