Files
MattrixwvReactComponents/src/routeTree.gen.ts
2026-08-15 15:37:24 -04:00

232 lines
6.5 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 { Route as rootRouteImport } from './routes/__root'
import { Route as IndexRouteImport } from './routes/index'
import { Route as ButtonsIndexRouteImport } from './routes/buttons/index'
import { Route as InputIndexRouteImport } from './routes/input/index'
import { Route as LoadingIndexRouteImport } from './routes/loading/index'
import { Route as MessageIndexRouteImport } from './routes/message/index'
import { Route as ModalIndexRouteImport } from './routes/modal/index'
import { Route as PillIndexRouteImport } from './routes/pill/index'
import { Route as ProgressIndexRouteImport } from './routes/progress/index'
import { Route as TabIndexRouteImport } from './routes/tab/index'
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
const ButtonsIndexRoute = ButtonsIndexRouteImport.update({
id: '/buttons/',
path: '/buttons/',
getParentRoute: () => rootRouteImport,
} as any)
const InputIndexRoute = InputIndexRouteImport.update({
id: '/input/',
path: '/input/',
getParentRoute: () => rootRouteImport,
} as any)
const LoadingIndexRoute = LoadingIndexRouteImport.update({
id: '/loading/',
path: '/loading/',
getParentRoute: () => rootRouteImport,
} as any)
const MessageIndexRoute = MessageIndexRouteImport.update({
id: '/message/',
path: '/message/',
getParentRoute: () => rootRouteImport,
} as any)
const ModalIndexRoute = ModalIndexRouteImport.update({
id: '/modal/',
path: '/modal/',
getParentRoute: () => rootRouteImport,
} as any)
const PillIndexRoute = PillIndexRouteImport.update({
id: '/pill/',
path: '/pill/',
getParentRoute: () => rootRouteImport,
} as any)
const ProgressIndexRoute = ProgressIndexRouteImport.update({
id: '/progress/',
path: '/progress/',
getParentRoute: () => rootRouteImport,
} as any)
const TabIndexRoute = TabIndexRouteImport.update({
id: '/tab/',
path: '/tab/',
getParentRoute: () => rootRouteImport,
} as any)
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/buttons/': typeof ButtonsIndexRoute
'/input/': typeof InputIndexRoute
'/loading/': typeof LoadingIndexRoute
'/message/': typeof MessageIndexRoute
'/modal/': typeof ModalIndexRoute
'/pill/': typeof PillIndexRoute
'/progress/': typeof ProgressIndexRoute
'/tab/': typeof TabIndexRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
'/buttons': typeof ButtonsIndexRoute
'/input': typeof InputIndexRoute
'/loading': typeof LoadingIndexRoute
'/message': typeof MessageIndexRoute
'/modal': typeof ModalIndexRoute
'/pill': typeof PillIndexRoute
'/progress': typeof ProgressIndexRoute
'/tab': typeof TabIndexRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/buttons/': typeof ButtonsIndexRoute
'/input/': typeof InputIndexRoute
'/loading/': typeof LoadingIndexRoute
'/message/': typeof MessageIndexRoute
'/modal/': typeof ModalIndexRoute
'/pill/': typeof PillIndexRoute
'/progress/': typeof ProgressIndexRoute
'/tab/': typeof TabIndexRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/'
| '/buttons/'
| '/input/'
| '/loading/'
| '/message/'
| '/modal/'
| '/pill/'
| '/progress/'
| '/tab/'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
| '/buttons'
| '/input'
| '/loading'
| '/message'
| '/modal'
| '/pill'
| '/progress'
| '/tab'
id:
| '__root__'
| '/'
| '/buttons/'
| '/input/'
| '/loading/'
| '/message/'
| '/modal/'
| '/pill/'
| '/progress/'
| '/tab/'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
ButtonsIndexRoute: typeof ButtonsIndexRoute
InputIndexRoute: typeof InputIndexRoute
LoadingIndexRoute: typeof LoadingIndexRoute
MessageIndexRoute: typeof MessageIndexRoute
ModalIndexRoute: typeof ModalIndexRoute
PillIndexRoute: typeof PillIndexRoute
ProgressIndexRoute: typeof ProgressIndexRoute
TabIndexRoute: typeof TabIndexRoute
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
'/buttons/': {
id: '/buttons/'
path: '/buttons'
fullPath: '/buttons/'
preLoaderRoute: typeof ButtonsIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/input/': {
id: '/input/'
path: '/input'
fullPath: '/input/'
preLoaderRoute: typeof InputIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/loading/': {
id: '/loading/'
path: '/loading'
fullPath: '/loading/'
preLoaderRoute: typeof LoadingIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/message/': {
id: '/message/'
path: '/message'
fullPath: '/message/'
preLoaderRoute: typeof MessageIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/modal/': {
id: '/modal/'
path: '/modal'
fullPath: '/modal/'
preLoaderRoute: typeof ModalIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/pill/': {
id: '/pill/'
path: '/pill'
fullPath: '/pill/'
preLoaderRoute: typeof PillIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/progress/': {
id: '/progress/'
path: '/progress'
fullPath: '/progress/'
preLoaderRoute: typeof ProgressIndexRouteImport
parentRoute: typeof rootRouteImport
}
'/tab/': {
id: '/tab/'
path: '/tab'
fullPath: '/tab/'
preLoaderRoute: typeof TabIndexRouteImport
parentRoute: typeof rootRouteImport
}
}
}
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
ButtonsIndexRoute: ButtonsIndexRoute,
InputIndexRoute: InputIndexRoute,
LoadingIndexRoute: LoadingIndexRoute,
MessageIndexRoute: MessageIndexRoute,
ModalIndexRoute: ModalIndexRoute,
PillIndexRoute: PillIndexRoute,
ProgressIndexRoute: ProgressIndexRoute,
TabIndexRoute: TabIndexRoute,
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()