123 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			123 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/* prettier-ignore-start */
 | 
						|
 | 
						|
/* eslint-disable */
 | 
						|
 | 
						|
// @ts-nocheck
 | 
						|
 | 
						|
// noinspection JSUnusedGlobalSymbols
 | 
						|
 | 
						|
// This file is auto-generated by TanStack Router
 | 
						|
 | 
						|
import { createFileRoute } from '@tanstack/react-router'
 | 
						|
 | 
						|
// Import Routes
 | 
						|
 | 
						|
import { Route as rootRoute } from './routes/__root'
 | 
						|
 | 
						|
// Create Virtual Routes
 | 
						|
 | 
						|
const TestLazyImport = createFileRoute('/test')()
 | 
						|
const ServicesLazyImport = createFileRoute('/services')()
 | 
						|
const ProductsLazyImport = createFileRoute('/products')()
 | 
						|
const LoginLazyImport = createFileRoute('/login')()
 | 
						|
const LeadsLazyImport = createFileRoute('/leads')()
 | 
						|
const ClientsLazyImport = createFileRoute('/clients')()
 | 
						|
const BarcodeLazyImport = createFileRoute('/barcode')()
 | 
						|
const IndexLazyImport = createFileRoute('/')()
 | 
						|
 | 
						|
// Create/Update Routes
 | 
						|
 | 
						|
const TestLazyRoute = TestLazyImport.update({
 | 
						|
  path: '/test',
 | 
						|
  getParentRoute: () => rootRoute,
 | 
						|
} as any).lazy(() => import('./routes/test.lazy').then((d) => d.Route))
 | 
						|
 | 
						|
const ServicesLazyRoute = ServicesLazyImport.update({
 | 
						|
  path: '/services',
 | 
						|
  getParentRoute: () => rootRoute,
 | 
						|
} as any).lazy(() => import('./routes/services.lazy').then((d) => d.Route))
 | 
						|
 | 
						|
const ProductsLazyRoute = ProductsLazyImport.update({
 | 
						|
  path: '/products',
 | 
						|
  getParentRoute: () => rootRoute,
 | 
						|
} as any).lazy(() => import('./routes/products.lazy').then((d) => d.Route))
 | 
						|
 | 
						|
const LoginLazyRoute = LoginLazyImport.update({
 | 
						|
  path: '/login',
 | 
						|
  getParentRoute: () => rootRoute,
 | 
						|
} as any).lazy(() => import('./routes/login.lazy').then((d) => d.Route))
 | 
						|
 | 
						|
const LeadsLazyRoute = LeadsLazyImport.update({
 | 
						|
  path: '/leads',
 | 
						|
  getParentRoute: () => rootRoute,
 | 
						|
} as any).lazy(() => import('./routes/leads.lazy').then((d) => d.Route))
 | 
						|
 | 
						|
const ClientsLazyRoute = ClientsLazyImport.update({
 | 
						|
  path: '/clients',
 | 
						|
  getParentRoute: () => rootRoute,
 | 
						|
} as any).lazy(() => import('./routes/clients.lazy').then((d) => d.Route))
 | 
						|
 | 
						|
const BarcodeLazyRoute = BarcodeLazyImport.update({
 | 
						|
  path: '/barcode',
 | 
						|
  getParentRoute: () => rootRoute,
 | 
						|
} as any).lazy(() => import('./routes/barcode.lazy').then((d) => d.Route))
 | 
						|
 | 
						|
const IndexLazyRoute = IndexLazyImport.update({
 | 
						|
  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 {
 | 
						|
    '/': {
 | 
						|
      preLoaderRoute: typeof IndexLazyImport
 | 
						|
      parentRoute: typeof rootRoute
 | 
						|
    }
 | 
						|
    '/barcode': {
 | 
						|
      preLoaderRoute: typeof BarcodeLazyImport
 | 
						|
      parentRoute: typeof rootRoute
 | 
						|
    }
 | 
						|
    '/clients': {
 | 
						|
      preLoaderRoute: typeof ClientsLazyImport
 | 
						|
      parentRoute: typeof rootRoute
 | 
						|
    }
 | 
						|
    '/leads': {
 | 
						|
      preLoaderRoute: typeof LeadsLazyImport
 | 
						|
      parentRoute: typeof rootRoute
 | 
						|
    }
 | 
						|
    '/login': {
 | 
						|
      preLoaderRoute: typeof LoginLazyImport
 | 
						|
      parentRoute: typeof rootRoute
 | 
						|
    }
 | 
						|
    '/products': {
 | 
						|
      preLoaderRoute: typeof ProductsLazyImport
 | 
						|
      parentRoute: typeof rootRoute
 | 
						|
    }
 | 
						|
    '/services': {
 | 
						|
      preLoaderRoute: typeof ServicesLazyImport
 | 
						|
      parentRoute: typeof rootRoute
 | 
						|
    }
 | 
						|
    '/test': {
 | 
						|
      preLoaderRoute: typeof TestLazyImport
 | 
						|
      parentRoute: typeof rootRoute
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
// Create and export the route tree
 | 
						|
 | 
						|
export const routeTree = rootRoute.addChildren([
 | 
						|
  IndexLazyRoute,
 | 
						|
  BarcodeLazyRoute,
 | 
						|
  ClientsLazyRoute,
 | 
						|
  LeadsLazyRoute,
 | 
						|
  LoginLazyRoute,
 | 
						|
  ProductsLazyRoute,
 | 
						|
  ServicesLazyRoute,
 | 
						|
  TestLazyRoute,
 | 
						|
])
 | 
						|
 | 
						|
/* prettier-ignore-end */
 |