/* 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 ModelsRouteImport } from './routes/models' import { Route as LogsRouteImport } from './routes/logs' import { Route as CredentialsRouteImport } from './routes/credentials' import { Route as ConfigRouteImport } from './routes/config' import { Route as ChannelsRouteRouteImport } from './routes/channels/route' import { Route as IndexRouteImport } from './routes/index' import { Route as ConfigRawRouteImport } from './routes/config.raw' import { Route as ChannelsNameRouteImport } from './routes/channels/$name' const ModelsRoute = ModelsRouteImport.update({ id: '/models', path: '/models', getParentRoute: () => rootRouteImport, } as any) const LogsRoute = LogsRouteImport.update({ id: '/logs', path: '/logs', getParentRoute: () => rootRouteImport, } as any) const CredentialsRoute = CredentialsRouteImport.update({ id: '/credentials', path: '/credentials', getParentRoute: () => rootRouteImport, } as any) const ConfigRoute = ConfigRouteImport.update({ id: '/config', path: '/config', getParentRoute: () => rootRouteImport, } as any) const ChannelsRouteRoute = ChannelsRouteRouteImport.update({ id: '/channels', path: '/channels', getParentRoute: () => rootRouteImport, } as any) const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) const ConfigRawRoute = ConfigRawRouteImport.update({ id: '/raw', path: '/raw', getParentRoute: () => ConfigRoute, } as any) const ChannelsNameRoute = ChannelsNameRouteImport.update({ id: '/$name', path: '/$name', getParentRoute: () => ChannelsRouteRoute, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/channels': typeof ChannelsRouteRouteWithChildren '/config': typeof ConfigRouteWithChildren '/credentials': typeof CredentialsRoute '/logs': typeof LogsRoute '/models': typeof ModelsRoute '/channels/$name': typeof ChannelsNameRoute '/config/raw': typeof ConfigRawRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/channels': typeof ChannelsRouteRouteWithChildren '/config': typeof ConfigRouteWithChildren '/credentials': typeof CredentialsRoute '/logs': typeof LogsRoute '/models': typeof ModelsRoute '/channels/$name': typeof ChannelsNameRoute '/config/raw': typeof ConfigRawRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/channels': typeof ChannelsRouteRouteWithChildren '/config': typeof ConfigRouteWithChildren '/credentials': typeof CredentialsRoute '/logs': typeof LogsRoute '/models': typeof ModelsRoute '/channels/$name': typeof ChannelsNameRoute '/config/raw': typeof ConfigRawRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: | '/' | '/channels' | '/config' | '/credentials' | '/logs' | '/models' | '/channels/$name' | '/config/raw' fileRoutesByTo: FileRoutesByTo to: | '/' | '/channels' | '/config' | '/credentials' | '/logs' | '/models' | '/channels/$name' | '/config/raw' id: | '__root__' | '/' | '/channels' | '/config' | '/credentials' | '/logs' | '/models' | '/channels/$name' | '/config/raw' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute ChannelsRouteRoute: typeof ChannelsRouteRouteWithChildren ConfigRoute: typeof ConfigRouteWithChildren CredentialsRoute: typeof CredentialsRoute LogsRoute: typeof LogsRoute ModelsRoute: typeof ModelsRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/models': { id: '/models' path: '/models' fullPath: '/models' preLoaderRoute: typeof ModelsRouteImport parentRoute: typeof rootRouteImport } '/logs': { id: '/logs' path: '/logs' fullPath: '/logs' preLoaderRoute: typeof LogsRouteImport parentRoute: typeof rootRouteImport } '/credentials': { id: '/credentials' path: '/credentials' fullPath: '/credentials' preLoaderRoute: typeof CredentialsRouteImport parentRoute: typeof rootRouteImport } '/config': { id: '/config' path: '/config' fullPath: '/config' preLoaderRoute: typeof ConfigRouteImport parentRoute: typeof rootRouteImport } '/channels': { id: '/channels' path: '/channels' fullPath: '/channels' preLoaderRoute: typeof ChannelsRouteRouteImport parentRoute: typeof rootRouteImport } '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } '/config/raw': { id: '/config/raw' path: '/raw' fullPath: '/config/raw' preLoaderRoute: typeof ConfigRawRouteImport parentRoute: typeof ConfigRoute } '/channels/$name': { id: '/channels/$name' path: '/$name' fullPath: '/channels/$name' preLoaderRoute: typeof ChannelsNameRouteImport parentRoute: typeof ChannelsRouteRoute } } } interface ChannelsRouteRouteChildren { ChannelsNameRoute: typeof ChannelsNameRoute } const ChannelsRouteRouteChildren: ChannelsRouteRouteChildren = { ChannelsNameRoute: ChannelsNameRoute, } const ChannelsRouteRouteWithChildren = ChannelsRouteRoute._addFileChildren( ChannelsRouteRouteChildren, ) interface ConfigRouteChildren { ConfigRawRoute: typeof ConfigRawRoute } const ConfigRouteChildren: ConfigRouteChildren = { ConfigRawRoute: ConfigRawRoute, } const ConfigRouteWithChildren = ConfigRoute._addFileChildren(ConfigRouteChildren) const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, ChannelsRouteRoute: ChannelsRouteRouteWithChildren, ConfigRoute: ConfigRouteWithChildren, CredentialsRoute: CredentialsRoute, LogsRoute: LogsRoute, ModelsRoute: ModelsRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()