/* 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 { createFileRoute } from '@tanstack/react-router' import { Route as rootRouteImport } from './routes/__root' import { Route as RouteImport } from './routes/_' import { Route as authLoginRouteImport } from './routes/_.(auth)/login' import { Route as appRecipesNewRouteImport } from './routes/_.(app)/recipes/new' const appIndexLazyRouteImport = createFileRoute('/_/(app)/')() const appRecipesAuthorIndexLazyRouteImport = createFileRoute( '/_/(app)/recipes/$author/', )() const appRecipesAuthorRkeyIndexLazyRouteImport = createFileRoute( '/_/(app)/recipes/$author/$rkey/', )() const Route = RouteImport.update({ id: '/_', getParentRoute: () => rootRouteImport, } as any) const appIndexLazyRoute = appIndexLazyRouteImport .update({ id: '/(app)/', path: '/', getParentRoute: () => Route, } as any) .lazy(() => import('./routes/_.(app)/index.lazy').then((d) => d.Route)) const authLoginRoute = authLoginRouteImport.update({ id: '/(auth)/login', path: '/login', getParentRoute: () => Route, } as any) const appRecipesNewRoute = appRecipesNewRouteImport.update({ id: '/(app)/recipes/new', path: '/recipes/new', getParentRoute: () => Route, } as any) const appRecipesAuthorIndexLazyRoute = appRecipesAuthorIndexLazyRouteImport .update({ id: '/(app)/recipes/$author/', path: '/recipes/$author/', getParentRoute: () => Route, } as any) .lazy(() => import('./routes/_.(app)/recipes/$author/index.lazy').then((d) => d.Route), ) const appRecipesAuthorRkeyIndexLazyRoute = appRecipesAuthorRkeyIndexLazyRouteImport .update({ id: '/(app)/recipes/$author/$rkey/', path: '/recipes/$author/$rkey/', getParentRoute: () => Route, } as any) .lazy(() => import('./routes/_.(app)/recipes/$author/$rkey/index.lazy').then( (d) => d.Route, ), ) export interface FileRoutesByFullPath { '/login': typeof authLoginRoute '/': typeof appIndexLazyRoute '/recipes/new': typeof appRecipesNewRoute '/recipes/$author': typeof appRecipesAuthorIndexLazyRoute '/recipes/$author/$rkey': typeof appRecipesAuthorRkeyIndexLazyRoute } export interface FileRoutesByTo { '/login': typeof authLoginRoute '/': typeof appIndexLazyRoute '/recipes/new': typeof appRecipesNewRoute '/recipes/$author': typeof appRecipesAuthorIndexLazyRoute '/recipes/$author/$rkey': typeof appRecipesAuthorRkeyIndexLazyRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/_': typeof RouteWithChildren '/_/(auth)/login': typeof authLoginRoute '/_/(app)/': typeof appIndexLazyRoute '/_/(app)/recipes/new': typeof appRecipesNewRoute '/_/(app)/recipes/$author/': typeof appRecipesAuthorIndexLazyRoute '/_/(app)/recipes/$author/$rkey/': typeof appRecipesAuthorRkeyIndexLazyRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: | '/login' | '/' | '/recipes/new' | '/recipes/$author' | '/recipes/$author/$rkey' fileRoutesByTo: FileRoutesByTo to: | '/login' | '/' | '/recipes/new' | '/recipes/$author' | '/recipes/$author/$rkey' id: | '__root__' | '/_' | '/_/(auth)/login' | '/_/(app)/' | '/_/(app)/recipes/new' | '/_/(app)/recipes/$author/' | '/_/(app)/recipes/$author/$rkey/' fileRoutesById: FileRoutesById } export interface RootRouteChildren { Route: typeof RouteWithChildren } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/_': { id: '/_' path: '' fullPath: '' preLoaderRoute: typeof RouteImport parentRoute: typeof rootRouteImport } '/_/(app)/': { id: '/_/(app)/' path: '/' fullPath: '/' preLoaderRoute: typeof appIndexLazyRouteImport parentRoute: typeof Route } '/_/(auth)/login': { id: '/_/(auth)/login' path: '/login' fullPath: '/login' preLoaderRoute: typeof authLoginRouteImport parentRoute: typeof Route } '/_/(app)/recipes/new': { id: '/_/(app)/recipes/new' path: '/recipes/new' fullPath: '/recipes/new' preLoaderRoute: typeof appRecipesNewRouteImport parentRoute: typeof Route } '/_/(app)/recipes/$author/': { id: '/_/(app)/recipes/$author/' path: '/recipes/$author' fullPath: '/recipes/$author' preLoaderRoute: typeof appRecipesAuthorIndexLazyRouteImport parentRoute: typeof Route } '/_/(app)/recipes/$author/$rkey/': { id: '/_/(app)/recipes/$author/$rkey/' path: '/recipes/$author/$rkey' fullPath: '/recipes/$author/$rkey' preLoaderRoute: typeof appRecipesAuthorRkeyIndexLazyRouteImport parentRoute: typeof Route } } } interface RouteChildren { authLoginRoute: typeof authLoginRoute appIndexLazyRoute: typeof appIndexLazyRoute appRecipesNewRoute: typeof appRecipesNewRoute appRecipesAuthorIndexLazyRoute: typeof appRecipesAuthorIndexLazyRoute appRecipesAuthorRkeyIndexLazyRoute: typeof appRecipesAuthorRkeyIndexLazyRoute } const RouteChildren: RouteChildren = { authLoginRoute: authLoginRoute, appIndexLazyRoute: appIndexLazyRoute, appRecipesNewRoute: appRecipesNewRoute, appRecipesAuthorIndexLazyRoute: appRecipesAuthorIndexLazyRoute, appRecipesAuthorRkeyIndexLazyRoute: appRecipesAuthorRkeyIndexLazyRoute, } const RouteWithChildren = Route._addFileChildren(RouteChildren) const rootRouteChildren: RootRouteChildren = { Route: RouteWithChildren, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()