/* 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 MagicLinkSentRouteImport } from './routes/magicLinkSent' import { Route as LoginRouteImport } from './routes/login' import { Route as SidebarLayoutRouteImport } from './routes/_sidebarLayout' import { Route as SidebarLayoutIndexRouteImport } from './routes/_sidebarLayout/index' const MagicLinkSentRoute = MagicLinkSentRouteImport.update({ id: '/magicLinkSent', path: '/magicLinkSent', getParentRoute: () => rootRouteImport, } as any) const LoginRoute = LoginRouteImport.update({ id: '/login', path: '/login', getParentRoute: () => rootRouteImport, } as any) const SidebarLayoutRoute = SidebarLayoutRouteImport.update({ id: '/_sidebarLayout', getParentRoute: () => rootRouteImport, } as any) const SidebarLayoutIndexRoute = SidebarLayoutIndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => SidebarLayoutRoute, } as any) export interface FileRoutesByFullPath { '/login': typeof LoginRoute '/magicLinkSent': typeof MagicLinkSentRoute '/': typeof SidebarLayoutIndexRoute } export interface FileRoutesByTo { '/login': typeof LoginRoute '/magicLinkSent': typeof MagicLinkSentRoute '/': typeof SidebarLayoutIndexRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/_sidebarLayout': typeof SidebarLayoutRouteWithChildren '/login': typeof LoginRoute '/magicLinkSent': typeof MagicLinkSentRoute '/_sidebarLayout/': typeof SidebarLayoutIndexRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: '/login' | '/magicLinkSent' | '/' fileRoutesByTo: FileRoutesByTo to: '/login' | '/magicLinkSent' | '/' id: | '__root__' | '/_sidebarLayout' | '/login' | '/magicLinkSent' | '/_sidebarLayout/' fileRoutesById: FileRoutesById } export interface RootRouteChildren { SidebarLayoutRoute: typeof SidebarLayoutRouteWithChildren LoginRoute: typeof LoginRoute MagicLinkSentRoute: typeof MagicLinkSentRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/magicLinkSent': { id: '/magicLinkSent' path: '/magicLinkSent' fullPath: '/magicLinkSent' preLoaderRoute: typeof MagicLinkSentRouteImport parentRoute: typeof rootRouteImport } '/login': { id: '/login' path: '/login' fullPath: '/login' preLoaderRoute: typeof LoginRouteImport parentRoute: typeof rootRouteImport } '/_sidebarLayout': { id: '/_sidebarLayout' path: '' fullPath: '' preLoaderRoute: typeof SidebarLayoutRouteImport parentRoute: typeof rootRouteImport } '/_sidebarLayout/': { id: '/_sidebarLayout/' path: '/' fullPath: '/' preLoaderRoute: typeof SidebarLayoutIndexRouteImport parentRoute: typeof SidebarLayoutRoute } } } interface SidebarLayoutRouteChildren { SidebarLayoutIndexRoute: typeof SidebarLayoutIndexRoute } const SidebarLayoutRouteChildren: SidebarLayoutRouteChildren = { SidebarLayoutIndexRoute: SidebarLayoutIndexRoute, } const SidebarLayoutRouteWithChildren = SidebarLayoutRoute._addFileChildren( SidebarLayoutRouteChildren, ) const rootRouteChildren: RootRouteChildren = { SidebarLayoutRoute: SidebarLayoutRouteWithChildren, LoginRoute: LoginRoute, MagicLinkSentRoute: MagicLinkSentRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()