8
8
// You should NOT make any changes in this file as it will be overwritten.
9
9
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
10
10
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'
18
18
19
19
const PluginsRoute = PluginsRouteImport . update ( {
20
20
id : '/plugins' ,
21
21
path : '/plugins' ,
22
22
getParentRoute : ( ) => rootRouteImport ,
23
- } as any ) ;
23
+ } as any )
24
24
const GuildsRoute = GuildsRouteImport . update ( {
25
25
id : '/guilds' ,
26
26
path : '/guilds' ,
27
27
getParentRoute : ( ) => rootRouteImport ,
28
- } as any ) ;
28
+ } as any )
29
29
const FeatureFlagsRoute = FeatureFlagsRouteImport . update ( {
30
30
id : '/feature-flags' ,
31
31
path : '/feature-flags' ,
32
32
getParentRoute : ( ) => rootRouteImport ,
33
- } as any ) ;
33
+ } as any )
34
34
const EventsRoute = EventsRouteImport . update ( {
35
35
id : '/events' ,
36
36
path : '/events' ,
37
37
getParentRoute : ( ) => rootRouteImport ,
38
- } as any ) ;
38
+ } as any )
39
39
const CommandsRoute = CommandsRouteImport . update ( {
40
40
id : '/commands' ,
41
41
path : '/commands' ,
42
42
getParentRoute : ( ) => rootRouteImport ,
43
- } as any ) ;
43
+ } as any )
44
44
const IndexRoute = IndexRouteImport . update ( {
45
45
id : '/' ,
46
46
path : '/' ,
47
47
getParentRoute : ( ) => rootRouteImport ,
48
- } as any ) ;
48
+ } as any )
49
49
50
50
export 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
57
57
}
58
58
export 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
65
65
}
66
66
export 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
74
74
}
75
75
export interface FileRouteTypes {
76
- fileRoutesByFullPath : FileRoutesByFullPath ;
76
+ fileRoutesByFullPath : FileRoutesByFullPath
77
77
fullPaths :
78
78
| '/'
79
79
| '/commands'
80
80
| '/events'
81
81
| '/feature-flags'
82
82
| '/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'
86
86
id :
87
87
| '__root__'
88
88
| '/'
89
89
| '/commands'
90
90
| '/events'
91
91
| '/feature-flags'
92
92
| '/guilds'
93
- | '/plugins' ;
94
- fileRoutesById : FileRoutesById ;
93
+ | '/plugins'
94
+ fileRoutesById : FileRoutesById
95
95
}
96
96
export 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
103
103
}
104
104
105
105
declare module '@tanstack/react-router' {
106
106
interface FileRoutesByPath {
107
107
'/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
+ }
114
114
'/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
+ }
121
121
'/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
+ }
128
128
'/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
+ }
135
135
'/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
+ }
142
142
'/' : {
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
+ }
149
149
}
150
150
}
151
151
@@ -156,7 +156,7 @@ const rootRouteChildren: RootRouteChildren = {
156
156
FeatureFlagsRoute : FeatureFlagsRoute ,
157
157
GuildsRoute : GuildsRoute ,
158
158
PluginsRoute : PluginsRoute ,
159
- } ;
159
+ }
160
160
export const routeTree = rootRouteImport
161
161
. _addFileChildren ( rootRouteChildren )
162
- . _addFileTypes < FileRouteTypes > ( ) ;
162
+ . _addFileTypes < FileRouteTypes > ( )
0 commit comments