@@ -13,8 +13,8 @@ import { Route as MoreRouteImport } from './routes/more'
1313import { Route as AboutRouteImport } from './routes/about'
1414import { Route as IndexRouteImport } from './routes/index'
1515import { Route as MoreIndexRouteImport } from './routes/more.index'
16- import { Route as ScheduleSplatRouteImport } from './routes/schedule.$'
1716import { Route as MoreLanguageRouteImport } from './routes/more.language'
17+ import { Route as AppSplatRouteImport } from './routes/app.$'
1818
1919const MoreRoute = MoreRouteImport . update ( {
2020 id : '/more' ,
@@ -36,67 +36,61 @@ const MoreIndexRoute = MoreIndexRouteImport.update({
3636 path : '/' ,
3737 getParentRoute : ( ) => MoreRoute ,
3838} as any )
39- const ScheduleSplatRoute = ScheduleSplatRouteImport . update ( {
40- id : '/schedule/$' ,
41- path : '/schedule/$' ,
42- getParentRoute : ( ) => rootRouteImport ,
43- } as any )
4439const MoreLanguageRoute = MoreLanguageRouteImport . update ( {
4540 id : '/language' ,
4641 path : '/language' ,
4742 getParentRoute : ( ) => MoreRoute ,
4843} as any )
44+ const AppSplatRoute = AppSplatRouteImport . update ( {
45+ id : '/app/$' ,
46+ path : '/app/$' ,
47+ getParentRoute : ( ) => rootRouteImport ,
48+ } as any )
4949
5050export interface FileRoutesByFullPath {
5151 '/' : typeof IndexRoute
5252 '/about' : typeof AboutRoute
5353 '/more' : typeof MoreRouteWithChildren
54+ '/app/$' : typeof AppSplatRoute
5455 '/more/language' : typeof MoreLanguageRoute
55- '/schedule/$' : typeof ScheduleSplatRoute
5656 '/more/' : typeof MoreIndexRoute
5757}
5858export interface FileRoutesByTo {
5959 '/' : typeof IndexRoute
6060 '/about' : typeof AboutRoute
61+ '/app/$' : typeof AppSplatRoute
6162 '/more/language' : typeof MoreLanguageRoute
62- '/schedule/$' : typeof ScheduleSplatRoute
6363 '/more' : typeof MoreIndexRoute
6464}
6565export interface FileRoutesById {
6666 __root__ : typeof rootRouteImport
6767 '/' : typeof IndexRoute
6868 '/about' : typeof AboutRoute
6969 '/more' : typeof MoreRouteWithChildren
70+ '/app/$' : typeof AppSplatRoute
7071 '/more/language' : typeof MoreLanguageRoute
71- '/schedule/$' : typeof ScheduleSplatRoute
7272 '/more/' : typeof MoreIndexRoute
7373}
7474export interface FileRouteTypes {
7575 fileRoutesByFullPath : FileRoutesByFullPath
76- fullPaths :
77- | '/'
78- | '/about'
79- | '/more'
80- | '/more/language'
81- | '/schedule/$'
82- | '/more/'
76+ fullPaths : '/' | '/about' | '/more' | '/app/$' | '/more/language' | '/more/'
8377 fileRoutesByTo : FileRoutesByTo
84- to : '/' | '/about' | '/more/language ' | '/schedule/$ ' | '/more'
78+ to : '/' | '/about' | '/app/$ ' | '/more/language ' | '/more'
8579 id :
8680 | '__root__'
8781 | '/'
8882 | '/about'
8983 | '/more'
84+ | '/app/$'
9085 | '/more/language'
91- | '/schedule/$'
9286 | '/more/'
9387 fileRoutesById : FileRoutesById
9488}
9589export interface RootRouteChildren {
9690 IndexRoute : typeof IndexRoute
9791 AboutRoute : typeof AboutRoute
9892 MoreRoute : typeof MoreRouteWithChildren
99- ScheduleSplatRoute : typeof ScheduleSplatRoute
93+ AppSplatRoute : typeof AppSplatRoute
10094}
10195
10296declare module '@tanstack/react-router' {
@@ -129,20 +123,20 @@ declare module '@tanstack/react-router' {
129123 preLoaderRoute : typeof MoreIndexRouteImport
130124 parentRoute : typeof MoreRoute
131125 }
132- '/schedule/$' : {
133- id : '/schedule/$'
134- path : '/schedule/$'
135- fullPath : '/schedule/$'
136- preLoaderRoute : typeof ScheduleSplatRouteImport
137- parentRoute : typeof rootRouteImport
138- }
139126 '/more/language' : {
140127 id : '/more/language'
141128 path : '/language'
142129 fullPath : '/more/language'
143130 preLoaderRoute : typeof MoreLanguageRouteImport
144131 parentRoute : typeof MoreRoute
145132 }
133+ '/app/$' : {
134+ id : '/app/$'
135+ path : '/app/$'
136+ fullPath : '/app/$'
137+ preLoaderRoute : typeof AppSplatRouteImport
138+ parentRoute : typeof rootRouteImport
139+ }
146140 }
147141}
148142
@@ -162,7 +156,7 @@ const rootRouteChildren: RootRouteChildren = {
162156 IndexRoute : IndexRoute ,
163157 AboutRoute : AboutRoute ,
164158 MoreRoute : MoreRouteWithChildren ,
165- ScheduleSplatRoute : ScheduleSplatRoute ,
159+ AppSplatRoute : AppSplatRoute ,
166160}
167161export const routeTree = rootRouteImport
168162 . _addFileChildren ( rootRouteChildren )
0 commit comments