mirror of
https://github.com/Xevion/linkpulse.git
synced 2025-12-16 16:12:18 -06:00
163 lines
3.9 KiB
TypeScript
163 lines
3.9 KiB
TypeScript
/* 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 { createFileRoute } from '@tanstack/react-router'
|
|
|
|
// Import Routes
|
|
|
|
import { Route as rootRoute } from './routes/__root'
|
|
import { Route as RegisterImport } from './routes/register'
|
|
import { Route as LoginImport } from './routes/login'
|
|
import { Route as DashboardImport } from './routes/dashboard'
|
|
|
|
// Create Virtual Routes
|
|
|
|
const IndexLazyImport = createFileRoute('/')()
|
|
|
|
// Create/Update Routes
|
|
|
|
const RegisterRoute = RegisterImport.update({
|
|
id: '/register',
|
|
path: '/register',
|
|
getParentRoute: () => rootRoute,
|
|
} as any)
|
|
|
|
const LoginRoute = LoginImport.update({
|
|
id: '/login',
|
|
path: '/login',
|
|
getParentRoute: () => rootRoute,
|
|
} as any)
|
|
|
|
const DashboardRoute = DashboardImport.update({
|
|
id: '/dashboard',
|
|
path: '/dashboard',
|
|
getParentRoute: () => rootRoute,
|
|
} as any)
|
|
|
|
const IndexLazyRoute = IndexLazyImport.update({
|
|
id: '/',
|
|
path: '/',
|
|
getParentRoute: () => rootRoute,
|
|
} as any).lazy(() => import('./routes/index.lazy').then((d) => d.Route))
|
|
|
|
// Populate the FileRoutesByPath interface
|
|
|
|
declare module '@tanstack/react-router' {
|
|
interface FileRoutesByPath {
|
|
'/': {
|
|
id: '/'
|
|
path: '/'
|
|
fullPath: '/'
|
|
preLoaderRoute: typeof IndexLazyImport
|
|
parentRoute: typeof rootRoute
|
|
}
|
|
'/dashboard': {
|
|
id: '/dashboard'
|
|
path: '/dashboard'
|
|
fullPath: '/dashboard'
|
|
preLoaderRoute: typeof DashboardImport
|
|
parentRoute: typeof rootRoute
|
|
}
|
|
'/login': {
|
|
id: '/login'
|
|
path: '/login'
|
|
fullPath: '/login'
|
|
preLoaderRoute: typeof LoginImport
|
|
parentRoute: typeof rootRoute
|
|
}
|
|
'/register': {
|
|
id: '/register'
|
|
path: '/register'
|
|
fullPath: '/register'
|
|
preLoaderRoute: typeof RegisterImport
|
|
parentRoute: typeof rootRoute
|
|
}
|
|
}
|
|
}
|
|
|
|
// Create and export the route tree
|
|
|
|
export interface FileRoutesByFullPath {
|
|
'/': typeof IndexLazyRoute
|
|
'/dashboard': typeof DashboardRoute
|
|
'/login': typeof LoginRoute
|
|
'/register': typeof RegisterRoute
|
|
}
|
|
|
|
export interface FileRoutesByTo {
|
|
'/': typeof IndexLazyRoute
|
|
'/dashboard': typeof DashboardRoute
|
|
'/login': typeof LoginRoute
|
|
'/register': typeof RegisterRoute
|
|
}
|
|
|
|
export interface FileRoutesById {
|
|
__root__: typeof rootRoute
|
|
'/': typeof IndexLazyRoute
|
|
'/dashboard': typeof DashboardRoute
|
|
'/login': typeof LoginRoute
|
|
'/register': typeof RegisterRoute
|
|
}
|
|
|
|
export interface FileRouteTypes {
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
fullPaths: '/' | '/dashboard' | '/login' | '/register'
|
|
fileRoutesByTo: FileRoutesByTo
|
|
to: '/' | '/dashboard' | '/login' | '/register'
|
|
id: '__root__' | '/' | '/dashboard' | '/login' | '/register'
|
|
fileRoutesById: FileRoutesById
|
|
}
|
|
|
|
export interface RootRouteChildren {
|
|
IndexLazyRoute: typeof IndexLazyRoute
|
|
DashboardRoute: typeof DashboardRoute
|
|
LoginRoute: typeof LoginRoute
|
|
RegisterRoute: typeof RegisterRoute
|
|
}
|
|
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
IndexLazyRoute: IndexLazyRoute,
|
|
DashboardRoute: DashboardRoute,
|
|
LoginRoute: LoginRoute,
|
|
RegisterRoute: RegisterRoute,
|
|
}
|
|
|
|
export const routeTree = rootRoute
|
|
._addFileChildren(rootRouteChildren)
|
|
._addFileTypes<FileRouteTypes>()
|
|
|
|
/* ROUTE_MANIFEST_START
|
|
{
|
|
"routes": {
|
|
"__root__": {
|
|
"filePath": "__root.tsx",
|
|
"children": [
|
|
"/",
|
|
"/dashboard",
|
|
"/login",
|
|
"/register"
|
|
]
|
|
},
|
|
"/": {
|
|
"filePath": "index.lazy.tsx"
|
|
},
|
|
"/dashboard": {
|
|
"filePath": "dashboard.tsx"
|
|
},
|
|
"/login": {
|
|
"filePath": "login.tsx"
|
|
},
|
|
"/register": {
|
|
"filePath": "register.tsx"
|
|
}
|
|
}
|
|
}
|
|
ROUTE_MANIFEST_END */
|