|
|
@@ -9,24 +9,24 @@
|
|
|
|
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
|
|
|
|
// 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 rootRouteImport } from './routes/__root'
|
|
|
|
import { Route as GarrysmodRouteImport } from './routes/garrysmod'
|
|
|
|
import { Route as PazismemodRouteImport } from './routes/pazismemod'
|
|
|
|
import { Route as MainRouteImport } from './routes/_main'
|
|
|
|
import { Route as MainRouteImport } from './routes/_main'
|
|
|
|
import { Route as GarrysmodIndexRouteImport } from './routes/garrysmod.index'
|
|
|
|
import { Route as PazismemodIndexRouteImport } from './routes/pazismemod.index'
|
|
|
|
import { Route as MainIndexRouteImport } from './routes/_main.index'
|
|
|
|
import { Route as MainIndexRouteImport } from './routes/_main.index'
|
|
|
|
|
|
|
|
|
|
|
|
const GarrysmodRoute = GarrysmodRouteImport.update({
|
|
|
|
const PazismemodRoute = PazismemodRouteImport.update({
|
|
|
|
id: '/garrysmod',
|
|
|
|
id: '/pazismemod',
|
|
|
|
path: '/garrysmod',
|
|
|
|
path: '/pazismemod',
|
|
|
|
getParentRoute: () => rootRouteImport,
|
|
|
|
getParentRoute: () => rootRouteImport,
|
|
|
|
} as any)
|
|
|
|
} as any)
|
|
|
|
const MainRoute = MainRouteImport.update({
|
|
|
|
const MainRoute = MainRouteImport.update({
|
|
|
|
id: '/_main',
|
|
|
|
id: '/_main',
|
|
|
|
getParentRoute: () => rootRouteImport,
|
|
|
|
getParentRoute: () => rootRouteImport,
|
|
|
|
} as any)
|
|
|
|
} as any)
|
|
|
|
const GarrysmodIndexRoute = GarrysmodIndexRouteImport.update({
|
|
|
|
const PazismemodIndexRoute = PazismemodIndexRouteImport.update({
|
|
|
|
id: '/',
|
|
|
|
id: '/',
|
|
|
|
path: '/',
|
|
|
|
path: '/',
|
|
|
|
getParentRoute: () => GarrysmodRoute,
|
|
|
|
getParentRoute: () => PazismemodRoute,
|
|
|
|
} as any)
|
|
|
|
} as any)
|
|
|
|
const MainIndexRoute = MainIndexRouteImport.update({
|
|
|
|
const MainIndexRoute = MainIndexRouteImport.update({
|
|
|
|
id: '/',
|
|
|
|
id: '/',
|
|
|
@@ -35,41 +35,41 @@ const MainIndexRoute = MainIndexRouteImport.update({
|
|
|
|
} as any)
|
|
|
|
} as any)
|
|
|
|
|
|
|
|
|
|
|
|
export interface FileRoutesByFullPath {
|
|
|
|
export interface FileRoutesByFullPath {
|
|
|
|
'/garrysmod': typeof GarrysmodRouteWithChildren
|
|
|
|
'/pazismemod': typeof PazismemodRouteWithChildren
|
|
|
|
'/': typeof MainIndexRoute
|
|
|
|
'/': typeof MainIndexRoute
|
|
|
|
'/garrysmod/': typeof GarrysmodIndexRoute
|
|
|
|
'/pazismemod/': typeof PazismemodIndexRoute
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export interface FileRoutesByTo {
|
|
|
|
export interface FileRoutesByTo {
|
|
|
|
'/': typeof MainIndexRoute
|
|
|
|
'/': typeof MainIndexRoute
|
|
|
|
'/garrysmod': typeof GarrysmodIndexRoute
|
|
|
|
'/pazismemod': typeof PazismemodIndexRoute
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export interface FileRoutesById {
|
|
|
|
export interface FileRoutesById {
|
|
|
|
__root__: typeof rootRouteImport
|
|
|
|
__root__: typeof rootRouteImport
|
|
|
|
'/_main': typeof MainRouteWithChildren
|
|
|
|
'/_main': typeof MainRouteWithChildren
|
|
|
|
'/garrysmod': typeof GarrysmodRouteWithChildren
|
|
|
|
'/pazismemod': typeof PazismemodRouteWithChildren
|
|
|
|
'/_main/': typeof MainIndexRoute
|
|
|
|
'/_main/': typeof MainIndexRoute
|
|
|
|
'/garrysmod/': typeof GarrysmodIndexRoute
|
|
|
|
'/pazismemod/': typeof PazismemodIndexRoute
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export interface FileRouteTypes {
|
|
|
|
export interface FileRouteTypes {
|
|
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
|
|
fileRoutesByFullPath: FileRoutesByFullPath
|
|
|
|
fullPaths: '/garrysmod' | '/' | '/garrysmod/'
|
|
|
|
fullPaths: '/pazismemod' | '/' | '/pazismemod/'
|
|
|
|
fileRoutesByTo: FileRoutesByTo
|
|
|
|
fileRoutesByTo: FileRoutesByTo
|
|
|
|
to: '/' | '/garrysmod'
|
|
|
|
to: '/' | '/pazismemod'
|
|
|
|
id: '__root__' | '/_main' | '/garrysmod' | '/_main/' | '/garrysmod/'
|
|
|
|
id: '__root__' | '/_main' | '/pazismemod' | '/_main/' | '/pazismemod/'
|
|
|
|
fileRoutesById: FileRoutesById
|
|
|
|
fileRoutesById: FileRoutesById
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export interface RootRouteChildren {
|
|
|
|
export interface RootRouteChildren {
|
|
|
|
MainRoute: typeof MainRouteWithChildren
|
|
|
|
MainRoute: typeof MainRouteWithChildren
|
|
|
|
GarrysmodRoute: typeof GarrysmodRouteWithChildren
|
|
|
|
PazismemodRoute: typeof PazismemodRouteWithChildren
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
declare module '@tanstack/react-router' {
|
|
|
|
declare module '@tanstack/react-router' {
|
|
|
|
interface FileRoutesByPath {
|
|
|
|
interface FileRoutesByPath {
|
|
|
|
'/garrysmod': {
|
|
|
|
'/pazismemod': {
|
|
|
|
id: '/garrysmod'
|
|
|
|
id: '/pazismemod'
|
|
|
|
path: '/garrysmod'
|
|
|
|
path: '/pazismemod'
|
|
|
|
fullPath: '/garrysmod'
|
|
|
|
fullPath: '/pazismemod'
|
|
|
|
preLoaderRoute: typeof GarrysmodRouteImport
|
|
|
|
preLoaderRoute: typeof PazismemodRouteImport
|
|
|
|
parentRoute: typeof rootRouteImport
|
|
|
|
parentRoute: typeof rootRouteImport
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'/_main': {
|
|
|
|
'/_main': {
|
|
|
@@ -79,12 +79,12 @@ declare module '@tanstack/react-router' {
|
|
|
|
preLoaderRoute: typeof MainRouteImport
|
|
|
|
preLoaderRoute: typeof MainRouteImport
|
|
|
|
parentRoute: typeof rootRouteImport
|
|
|
|
parentRoute: typeof rootRouteImport
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'/garrysmod/': {
|
|
|
|
'/pazismemod/': {
|
|
|
|
id: '/garrysmod/'
|
|
|
|
id: '/pazismemod/'
|
|
|
|
path: '/'
|
|
|
|
path: '/'
|
|
|
|
fullPath: '/garrysmod/'
|
|
|
|
fullPath: '/pazismemod/'
|
|
|
|
preLoaderRoute: typeof GarrysmodIndexRouteImport
|
|
|
|
preLoaderRoute: typeof PazismemodIndexRouteImport
|
|
|
|
parentRoute: typeof GarrysmodRoute
|
|
|
|
parentRoute: typeof PazismemodRoute
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'/_main/': {
|
|
|
|
'/_main/': {
|
|
|
|
id: '/_main/'
|
|
|
|
id: '/_main/'
|
|
|
@@ -106,21 +106,21 @@ const MainRouteChildren: MainRouteChildren = {
|
|
|
|
|
|
|
|
|
|
|
|
const MainRouteWithChildren = MainRoute._addFileChildren(MainRouteChildren)
|
|
|
|
const MainRouteWithChildren = MainRoute._addFileChildren(MainRouteChildren)
|
|
|
|
|
|
|
|
|
|
|
|
interface GarrysmodRouteChildren {
|
|
|
|
interface PazismemodRouteChildren {
|
|
|
|
GarrysmodIndexRoute: typeof GarrysmodIndexRoute
|
|
|
|
PazismemodIndexRoute: typeof PazismemodIndexRoute
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const GarrysmodRouteChildren: GarrysmodRouteChildren = {
|
|
|
|
const PazismemodRouteChildren: PazismemodRouteChildren = {
|
|
|
|
GarrysmodIndexRoute: GarrysmodIndexRoute,
|
|
|
|
PazismemodIndexRoute: PazismemodIndexRoute,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const GarrysmodRouteWithChildren = GarrysmodRoute._addFileChildren(
|
|
|
|
const PazismemodRouteWithChildren = PazismemodRoute._addFileChildren(
|
|
|
|
GarrysmodRouteChildren,
|
|
|
|
PazismemodRouteChildren,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
|
|
const rootRouteChildren: RootRouteChildren = {
|
|
|
|
MainRoute: MainRouteWithChildren,
|
|
|
|
MainRoute: MainRouteWithChildren,
|
|
|
|
GarrysmodRoute: GarrysmodRouteWithChildren,
|
|
|
|
PazismemodRoute: PazismemodRouteWithChildren,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export const routeTree = rootRouteImport
|
|
|
|
export const routeTree = rootRouteImport
|
|
|
|
._addFileChildren(rootRouteChildren)
|
|
|
|
._addFileChildren(rootRouteChildren)
|
|
|
|