/* 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 SettingsRouteImport } from './routes/settings' import { Route as SearchRouteImport } from './routes/search' import { Route as InstalledRouteImport } from './routes/installed' import { Route as FeaturedRouteImport } from './routes/featured' import { Route as IndexRouteImport } from './routes/index' import { Route as GroupUuidRouteImport } from './routes/group/$uuid' const SettingsRoute = SettingsRouteImport.update({ id: '/settings', path: '/settings', getParentRoute: () => rootRouteImport, } as any) const SearchRoute = SearchRouteImport.update({ id: '/search', path: '/search', getParentRoute: () => rootRouteImport, } as any) const InstalledRoute = InstalledRouteImport.update({ id: '/installed', path: '/installed', getParentRoute: () => rootRouteImport, } as any) const FeaturedRoute = FeaturedRouteImport.update({ id: '/featured', path: '/featured', getParentRoute: () => rootRouteImport, } as any) const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) const GroupUuidRoute = GroupUuidRouteImport.update({ id: '/group/$uuid', path: '/group/$uuid', getParentRoute: () => rootRouteImport, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/featured': typeof FeaturedRoute '/installed': typeof InstalledRoute '/search': typeof SearchRoute '/settings': typeof SettingsRoute '/group/$uuid': typeof GroupUuidRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/featured': typeof FeaturedRoute '/installed': typeof InstalledRoute '/search': typeof SearchRoute '/settings': typeof SettingsRoute '/group/$uuid': typeof GroupUuidRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/featured': typeof FeaturedRoute '/installed': typeof InstalledRoute '/search': typeof SearchRoute '/settings': typeof SettingsRoute '/group/$uuid': typeof GroupUuidRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: | '/' | '/featured' | '/installed' | '/search' | '/settings' | '/group/$uuid' fileRoutesByTo: FileRoutesByTo to: | '/' | '/featured' | '/installed' | '/search' | '/settings' | '/group/$uuid' id: | '__root__' | '/' | '/featured' | '/installed' | '/search' | '/settings' | '/group/$uuid' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute FeaturedRoute: typeof FeaturedRoute InstalledRoute: typeof InstalledRoute SearchRoute: typeof SearchRoute SettingsRoute: typeof SettingsRoute GroupUuidRoute: typeof GroupUuidRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/settings': { id: '/settings' path: '/settings' fullPath: '/settings' preLoaderRoute: typeof SettingsRouteImport parentRoute: typeof rootRouteImport } '/search': { id: '/search' path: '/search' fullPath: '/search' preLoaderRoute: typeof SearchRouteImport parentRoute: typeof rootRouteImport } '/installed': { id: '/installed' path: '/installed' fullPath: '/installed' preLoaderRoute: typeof InstalledRouteImport parentRoute: typeof rootRouteImport } '/featured': { id: '/featured' path: '/featured' fullPath: '/featured' preLoaderRoute: typeof FeaturedRouteImport parentRoute: typeof rootRouteImport } '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } '/group/$uuid': { id: '/group/$uuid' path: '/group/$uuid' fullPath: '/group/$uuid' preLoaderRoute: typeof GroupUuidRouteImport parentRoute: typeof rootRouteImport } } } const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, FeaturedRoute: FeaturedRoute, InstalledRoute: InstalledRoute, SearchRoute: SearchRoute, SettingsRoute: SettingsRoute, GroupUuidRoute: GroupUuidRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()