/* 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 BoardRouteImport } from './routes/board' import { Route as AutomationsRouteImport } from './routes/automations' import { Route as IndexRouteImport } from './routes/index' const BoardRoute = BoardRouteImport.update({ id: '/board', path: '/board', getParentRoute: () => rootRouteImport, } as any) const AutomationsRoute = AutomationsRouteImport.update({ id: '/automations', path: '/automations', getParentRoute: () => rootRouteImport, } as any) const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/automations': typeof AutomationsRoute '/board': typeof BoardRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/automations': typeof AutomationsRoute '/board': typeof BoardRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/automations': typeof AutomationsRoute '/board': typeof BoardRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: '/' | '/automations' | '/board' fileRoutesByTo: FileRoutesByTo to: '/' | '/automations' | '/board' id: '__root__' | '/' | '/automations' | '/board' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute AutomationsRoute: typeof AutomationsRoute BoardRoute: typeof BoardRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/board': { id: '/board' path: '/board' fullPath: '/board' preLoaderRoute: typeof BoardRouteImport parentRoute: typeof rootRouteImport } '/automations': { id: '/automations' path: '/automations' fullPath: '/automations' preLoaderRoute: typeof AutomationsRouteImport parentRoute: typeof rootRouteImport } '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } } } const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, AutomationsRoute: AutomationsRoute, BoardRoute: BoardRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes() import type { getRouter } from './router.tsx' import type { createStart } from '@tanstack/react-start' declare module '@tanstack/react-start' { interface Register { ssr: true router: Awaited> } }