/* 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 AuthRouteImport } from './routes/_auth' import { Route as IndexRouteImport } from './routes/index' import { Route as AuthRoomIndexRouteImport } from './routes/_auth/room/index' import { Route as AuthDeviceIndexRouteImport } from './routes/_auth/device/index' import { Route as AuthDashboardIndexRouteImport } from './routes/_auth/dashboard/index' import { Route as AuthCommandIndexRouteImport } from './routes/_auth/command/index' import { Route as AuthBlacklistIndexRouteImport } from './routes/_auth/blacklist/index' import { Route as AuthAppsIndexRouteImport } from './routes/_auth/apps/index' import { Route as AuthAgentIndexRouteImport } from './routes/_auth/agent/index' import { Route as authLoginIndexRouteImport } from './routes/(auth)/login/index' import { Route as AuthRoomRoomNameIndexRouteImport } from './routes/_auth/room/$roomName/index' const AuthRoute = AuthRouteImport.update({ id: '/_auth', getParentRoute: () => rootRouteImport, } as any) const IndexRoute = IndexRouteImport.update({ id: '/', path: '/', getParentRoute: () => rootRouteImport, } as any) const AuthRoomIndexRoute = AuthRoomIndexRouteImport.update({ id: '/room/', path: '/room/', getParentRoute: () => AuthRoute, } as any) const AuthDeviceIndexRoute = AuthDeviceIndexRouteImport.update({ id: '/device/', path: '/device/', getParentRoute: () => AuthRoute, } as any) const AuthDashboardIndexRoute = AuthDashboardIndexRouteImport.update({ id: '/dashboard/', path: '/dashboard/', getParentRoute: () => AuthRoute, } as any) const AuthCommandIndexRoute = AuthCommandIndexRouteImport.update({ id: '/command/', path: '/command/', getParentRoute: () => AuthRoute, } as any) const AuthBlacklistIndexRoute = AuthBlacklistIndexRouteImport.update({ id: '/blacklist/', path: '/blacklist/', getParentRoute: () => AuthRoute, } as any) const AuthAppsIndexRoute = AuthAppsIndexRouteImport.update({ id: '/apps/', path: '/apps/', getParentRoute: () => AuthRoute, } as any) const AuthAgentIndexRoute = AuthAgentIndexRouteImport.update({ id: '/agent/', path: '/agent/', getParentRoute: () => AuthRoute, } as any) const authLoginIndexRoute = authLoginIndexRouteImport.update({ id: '/(auth)/login/', path: '/login/', getParentRoute: () => rootRouteImport, } as any) const AuthRoomRoomNameIndexRoute = AuthRoomRoomNameIndexRouteImport.update({ id: '/room/$roomName/', path: '/room/$roomName/', getParentRoute: () => AuthRoute, } as any) export interface FileRoutesByFullPath { '/': typeof IndexRoute '/login': typeof authLoginIndexRoute '/agent': typeof AuthAgentIndexRoute '/apps': typeof AuthAppsIndexRoute '/blacklist': typeof AuthBlacklistIndexRoute '/command': typeof AuthCommandIndexRoute '/dashboard': typeof AuthDashboardIndexRoute '/device': typeof AuthDeviceIndexRoute '/room': typeof AuthRoomIndexRoute '/room/$roomName': typeof AuthRoomRoomNameIndexRoute } export interface FileRoutesByTo { '/': typeof IndexRoute '/login': typeof authLoginIndexRoute '/agent': typeof AuthAgentIndexRoute '/apps': typeof AuthAppsIndexRoute '/blacklist': typeof AuthBlacklistIndexRoute '/command': typeof AuthCommandIndexRoute '/dashboard': typeof AuthDashboardIndexRoute '/device': typeof AuthDeviceIndexRoute '/room': typeof AuthRoomIndexRoute '/room/$roomName': typeof AuthRoomRoomNameIndexRoute } export interface FileRoutesById { __root__: typeof rootRouteImport '/': typeof IndexRoute '/_auth': typeof AuthRouteWithChildren '/(auth)/login/': typeof authLoginIndexRoute '/_auth/agent/': typeof AuthAgentIndexRoute '/_auth/apps/': typeof AuthAppsIndexRoute '/_auth/blacklist/': typeof AuthBlacklistIndexRoute '/_auth/command/': typeof AuthCommandIndexRoute '/_auth/dashboard/': typeof AuthDashboardIndexRoute '/_auth/device/': typeof AuthDeviceIndexRoute '/_auth/room/': typeof AuthRoomIndexRoute '/_auth/room/$roomName/': typeof AuthRoomRoomNameIndexRoute } export interface FileRouteTypes { fileRoutesByFullPath: FileRoutesByFullPath fullPaths: | '/' | '/login' | '/agent' | '/apps' | '/blacklist' | '/command' | '/dashboard' | '/device' | '/room' | '/room/$roomName' fileRoutesByTo: FileRoutesByTo to: | '/' | '/login' | '/agent' | '/apps' | '/blacklist' | '/command' | '/dashboard' | '/device' | '/room' | '/room/$roomName' id: | '__root__' | '/' | '/_auth' | '/(auth)/login/' | '/_auth/agent/' | '/_auth/apps/' | '/_auth/blacklist/' | '/_auth/command/' | '/_auth/dashboard/' | '/_auth/device/' | '/_auth/room/' | '/_auth/room/$roomName/' fileRoutesById: FileRoutesById } export interface RootRouteChildren { IndexRoute: typeof IndexRoute AuthRoute: typeof AuthRouteWithChildren authLoginIndexRoute: typeof authLoginIndexRoute } declare module '@tanstack/react-router' { interface FileRoutesByPath { '/_auth': { id: '/_auth' path: '' fullPath: '' preLoaderRoute: typeof AuthRouteImport parentRoute: typeof rootRouteImport } '/': { id: '/' path: '/' fullPath: '/' preLoaderRoute: typeof IndexRouteImport parentRoute: typeof rootRouteImport } '/_auth/room/': { id: '/_auth/room/' path: '/room' fullPath: '/room' preLoaderRoute: typeof AuthRoomIndexRouteImport parentRoute: typeof AuthRoute } '/_auth/device/': { id: '/_auth/device/' path: '/device' fullPath: '/device' preLoaderRoute: typeof AuthDeviceIndexRouteImport parentRoute: typeof AuthRoute } '/_auth/dashboard/': { id: '/_auth/dashboard/' path: '/dashboard' fullPath: '/dashboard' preLoaderRoute: typeof AuthDashboardIndexRouteImport parentRoute: typeof AuthRoute } '/_auth/command/': { id: '/_auth/command/' path: '/command' fullPath: '/command' preLoaderRoute: typeof AuthCommandIndexRouteImport parentRoute: typeof AuthRoute } '/_auth/blacklist/': { id: '/_auth/blacklist/' path: '/blacklist' fullPath: '/blacklist' preLoaderRoute: typeof AuthBlacklistIndexRouteImport parentRoute: typeof AuthRoute } '/_auth/apps/': { id: '/_auth/apps/' path: '/apps' fullPath: '/apps' preLoaderRoute: typeof AuthAppsIndexRouteImport parentRoute: typeof AuthRoute } '/_auth/agent/': { id: '/_auth/agent/' path: '/agent' fullPath: '/agent' preLoaderRoute: typeof AuthAgentIndexRouteImport parentRoute: typeof AuthRoute } '/(auth)/login/': { id: '/(auth)/login/' path: '/login' fullPath: '/login' preLoaderRoute: typeof authLoginIndexRouteImport parentRoute: typeof rootRouteImport } '/_auth/room/$roomName/': { id: '/_auth/room/$roomName/' path: '/room/$roomName' fullPath: '/room/$roomName' preLoaderRoute: typeof AuthRoomRoomNameIndexRouteImport parentRoute: typeof AuthRoute } } } interface AuthRouteChildren { AuthAgentIndexRoute: typeof AuthAgentIndexRoute AuthAppsIndexRoute: typeof AuthAppsIndexRoute AuthBlacklistIndexRoute: typeof AuthBlacklistIndexRoute AuthCommandIndexRoute: typeof AuthCommandIndexRoute AuthDashboardIndexRoute: typeof AuthDashboardIndexRoute AuthDeviceIndexRoute: typeof AuthDeviceIndexRoute AuthRoomIndexRoute: typeof AuthRoomIndexRoute AuthRoomRoomNameIndexRoute: typeof AuthRoomRoomNameIndexRoute } const AuthRouteChildren: AuthRouteChildren = { AuthAgentIndexRoute: AuthAgentIndexRoute, AuthAppsIndexRoute: AuthAppsIndexRoute, AuthBlacklistIndexRoute: AuthBlacklistIndexRoute, AuthCommandIndexRoute: AuthCommandIndexRoute, AuthDashboardIndexRoute: AuthDashboardIndexRoute, AuthDeviceIndexRoute: AuthDeviceIndexRoute, AuthRoomIndexRoute: AuthRoomIndexRoute, AuthRoomRoomNameIndexRoute: AuthRoomRoomNameIndexRoute, } const AuthRouteWithChildren = AuthRoute._addFileChildren(AuthRouteChildren) const rootRouteChildren: RootRouteChildren = { IndexRoute: IndexRoute, AuthRoute: AuthRouteWithChildren, authLoginIndexRoute: authLoginIndexRoute, } export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes()