88// You should NOT make any changes in this file as it will be overwritten.
99// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
1010
11- import { Route as rootRouteImport } from './routes/__root' ;
12- import { Route as PluginsRouteImport } from './routes/plugins' ;
13- import { Route as GuildsRouteImport } from './routes/guilds' ;
14- import { Route as FeatureFlagsRouteImport } from './routes/feature-flags' ;
15- import { Route as EventsRouteImport } from './routes/events' ;
16- import { Route as CommandsRouteImport } from './routes/commands' ;
17- import { Route as IndexRouteImport } from './routes/index' ;
11+ import { Route as rootRouteImport } from './routes/__root'
12+ import { Route as PluginsRouteImport } from './routes/plugins'
13+ import { Route as GuildsRouteImport } from './routes/guilds'
14+ import { Route as FeatureFlagsRouteImport } from './routes/feature-flags'
15+ import { Route as EventsRouteImport } from './routes/events'
16+ import { Route as CommandsRouteImport } from './routes/commands'
17+ import { Route as IndexRouteImport } from './routes/index'
1818
1919const PluginsRoute = PluginsRouteImport . update ( {
2020 id : '/plugins' ,
2121 path : '/plugins' ,
2222 getParentRoute : ( ) => rootRouteImport ,
23- } as any ) ;
23+ } as any )
2424const GuildsRoute = GuildsRouteImport . update ( {
2525 id : '/guilds' ,
2626 path : '/guilds' ,
2727 getParentRoute : ( ) => rootRouteImport ,
28- } as any ) ;
28+ } as any )
2929const FeatureFlagsRoute = FeatureFlagsRouteImport . update ( {
3030 id : '/feature-flags' ,
3131 path : '/feature-flags' ,
3232 getParentRoute : ( ) => rootRouteImport ,
33- } as any ) ;
33+ } as any )
3434const EventsRoute = EventsRouteImport . update ( {
3535 id : '/events' ,
3636 path : '/events' ,
3737 getParentRoute : ( ) => rootRouteImport ,
38- } as any ) ;
38+ } as any )
3939const CommandsRoute = CommandsRouteImport . update ( {
4040 id : '/commands' ,
4141 path : '/commands' ,
4242 getParentRoute : ( ) => rootRouteImport ,
43- } as any ) ;
43+ } as any )
4444const IndexRoute = IndexRouteImport . update ( {
4545 id : '/' ,
4646 path : '/' ,
4747 getParentRoute : ( ) => rootRouteImport ,
48- } as any ) ;
48+ } as any )
4949
5050export interface FileRoutesByFullPath {
51- '/' : typeof IndexRoute ;
52- '/commands' : typeof CommandsRoute ;
53- '/events' : typeof EventsRoute ;
54- '/feature-flags' : typeof FeatureFlagsRoute ;
55- '/guilds' : typeof GuildsRoute ;
56- '/plugins' : typeof PluginsRoute ;
51+ '/' : typeof IndexRoute
52+ '/commands' : typeof CommandsRoute
53+ '/events' : typeof EventsRoute
54+ '/feature-flags' : typeof FeatureFlagsRoute
55+ '/guilds' : typeof GuildsRoute
56+ '/plugins' : typeof PluginsRoute
5757}
5858export interface FileRoutesByTo {
59- '/' : typeof IndexRoute ;
60- '/commands' : typeof CommandsRoute ;
61- '/events' : typeof EventsRoute ;
62- '/feature-flags' : typeof FeatureFlagsRoute ;
63- '/guilds' : typeof GuildsRoute ;
64- '/plugins' : typeof PluginsRoute ;
59+ '/' : typeof IndexRoute
60+ '/commands' : typeof CommandsRoute
61+ '/events' : typeof EventsRoute
62+ '/feature-flags' : typeof FeatureFlagsRoute
63+ '/guilds' : typeof GuildsRoute
64+ '/plugins' : typeof PluginsRoute
6565}
6666export interface FileRoutesById {
67- __root__ : typeof rootRouteImport ;
68- '/' : typeof IndexRoute ;
69- '/commands' : typeof CommandsRoute ;
70- '/events' : typeof EventsRoute ;
71- '/feature-flags' : typeof FeatureFlagsRoute ;
72- '/guilds' : typeof GuildsRoute ;
73- '/plugins' : typeof PluginsRoute ;
67+ __root__ : typeof rootRouteImport
68+ '/' : typeof IndexRoute
69+ '/commands' : typeof CommandsRoute
70+ '/events' : typeof EventsRoute
71+ '/feature-flags' : typeof FeatureFlagsRoute
72+ '/guilds' : typeof GuildsRoute
73+ '/plugins' : typeof PluginsRoute
7474}
7575export interface FileRouteTypes {
76- fileRoutesByFullPath : FileRoutesByFullPath ;
76+ fileRoutesByFullPath : FileRoutesByFullPath
7777 fullPaths :
7878 | '/'
7979 | '/commands'
8080 | '/events'
8181 | '/feature-flags'
8282 | '/guilds'
83- | '/plugins' ;
84- fileRoutesByTo : FileRoutesByTo ;
85- to : '/' | '/commands' | '/events' | '/feature-flags' | '/guilds' | '/plugins' ;
83+ | '/plugins'
84+ fileRoutesByTo : FileRoutesByTo
85+ to : '/' | '/commands' | '/events' | '/feature-flags' | '/guilds' | '/plugins'
8686 id :
8787 | '__root__'
8888 | '/'
8989 | '/commands'
9090 | '/events'
9191 | '/feature-flags'
9292 | '/guilds'
93- | '/plugins' ;
94- fileRoutesById : FileRoutesById ;
93+ | '/plugins'
94+ fileRoutesById : FileRoutesById
9595}
9696export interface RootRouteChildren {
97- IndexRoute : typeof IndexRoute ;
98- CommandsRoute : typeof CommandsRoute ;
99- EventsRoute : typeof EventsRoute ;
100- FeatureFlagsRoute : typeof FeatureFlagsRoute ;
101- GuildsRoute : typeof GuildsRoute ;
102- PluginsRoute : typeof PluginsRoute ;
97+ IndexRoute : typeof IndexRoute
98+ CommandsRoute : typeof CommandsRoute
99+ EventsRoute : typeof EventsRoute
100+ FeatureFlagsRoute : typeof FeatureFlagsRoute
101+ GuildsRoute : typeof GuildsRoute
102+ PluginsRoute : typeof PluginsRoute
103103}
104104
105105declare module '@tanstack/react-router' {
106106 interface FileRoutesByPath {
107107 '/plugins' : {
108- id : '/plugins' ;
109- path : '/plugins' ;
110- fullPath : '/plugins' ;
111- preLoaderRoute : typeof PluginsRouteImport ;
112- parentRoute : typeof rootRouteImport ;
113- } ;
108+ id : '/plugins'
109+ path : '/plugins'
110+ fullPath : '/plugins'
111+ preLoaderRoute : typeof PluginsRouteImport
112+ parentRoute : typeof rootRouteImport
113+ }
114114 '/guilds' : {
115- id : '/guilds' ;
116- path : '/guilds' ;
117- fullPath : '/guilds' ;
118- preLoaderRoute : typeof GuildsRouteImport ;
119- parentRoute : typeof rootRouteImport ;
120- } ;
115+ id : '/guilds'
116+ path : '/guilds'
117+ fullPath : '/guilds'
118+ preLoaderRoute : typeof GuildsRouteImport
119+ parentRoute : typeof rootRouteImport
120+ }
121121 '/feature-flags' : {
122- id : '/feature-flags' ;
123- path : '/feature-flags' ;
124- fullPath : '/feature-flags' ;
125- preLoaderRoute : typeof FeatureFlagsRouteImport ;
126- parentRoute : typeof rootRouteImport ;
127- } ;
122+ id : '/feature-flags'
123+ path : '/feature-flags'
124+ fullPath : '/feature-flags'
125+ preLoaderRoute : typeof FeatureFlagsRouteImport
126+ parentRoute : typeof rootRouteImport
127+ }
128128 '/events' : {
129- id : '/events' ;
130- path : '/events' ;
131- fullPath : '/events' ;
132- preLoaderRoute : typeof EventsRouteImport ;
133- parentRoute : typeof rootRouteImport ;
134- } ;
129+ id : '/events'
130+ path : '/events'
131+ fullPath : '/events'
132+ preLoaderRoute : typeof EventsRouteImport
133+ parentRoute : typeof rootRouteImport
134+ }
135135 '/commands' : {
136- id : '/commands' ;
137- path : '/commands' ;
138- fullPath : '/commands' ;
139- preLoaderRoute : typeof CommandsRouteImport ;
140- parentRoute : typeof rootRouteImport ;
141- } ;
136+ id : '/commands'
137+ path : '/commands'
138+ fullPath : '/commands'
139+ preLoaderRoute : typeof CommandsRouteImport
140+ parentRoute : typeof rootRouteImport
141+ }
142142 '/' : {
143- id : '/' ;
144- path : '/' ;
145- fullPath : '/' ;
146- preLoaderRoute : typeof IndexRouteImport ;
147- parentRoute : typeof rootRouteImport ;
148- } ;
143+ id : '/'
144+ path : '/'
145+ fullPath : '/'
146+ preLoaderRoute : typeof IndexRouteImport
147+ parentRoute : typeof rootRouteImport
148+ }
149149 }
150150}
151151
@@ -156,7 +156,7 @@ const rootRouteChildren: RootRouteChildren = {
156156 FeatureFlagsRoute : FeatureFlagsRoute ,
157157 GuildsRoute : GuildsRoute ,
158158 PluginsRoute : PluginsRoute ,
159- } ;
159+ }
160160export const routeTree = rootRouteImport
161161 . _addFileChildren ( rootRouteChildren )
162- . _addFileTypes < FileRouteTypes > ( ) ;
162+ . _addFileTypes < FileRouteTypes > ( )
0 commit comments