forked from Comcast/react-data-grid
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrouteTree.gen.ts
More file actions
705 lines (695 loc) · 23.6 KB
/
routeTree.gen.ts
File metadata and controls
705 lines (695 loc) · 23.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
/* 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 type { CreateFileRoute, FileRoutesByPath } from '@tanstack/react-router'
import { Route as rootRouteImport } from './routes/__root'
import { Route as VariableRowHeightRouteImport } from './routes/VariableRowHeight'
import { Route as TreeViewRouteImport } from './routes/TreeView'
import { Route as ScrollToCellRouteImport } from './routes/ScrollToCell'
import { Route as RowsReorderingRouteImport } from './routes/RowsReordering'
import { Route as RowGroupingRouteImport } from './routes/RowGrouping'
import { Route as ResizableGridRouteImport } from './routes/ResizableGrid'
import { Route as RangeSelectionRouteImport } from './routes/RangeSelection'
import { Route as NoRowsRouteImport } from './routes/NoRows'
import { Route as MillionCellsRouteImport } from './routes/MillionCells'
import { Route as MasterDetailRouteImport } from './routes/MasterDetail'
import { Route as InfiniteScrollingRouteImport } from './routes/InfiniteScrolling'
import { Route as HeaderFiltersRouteImport } from './routes/HeaderFilters'
import { Route as CustomizableRenderersRouteImport } from './routes/CustomizableRenderers'
import { Route as ContextMenuRouteImport } from './routes/ContextMenu'
import { Route as CommonFeaturesRouteImport } from './routes/CommonFeatures'
import { Route as ColumnsReorderingRouteImport } from './routes/ColumnsReordering'
import { Route as ColumnSpanningRouteImport } from './routes/ColumnSpanning'
import { Route as ColumnGroupingRouteImport } from './routes/ColumnGrouping'
import { Route as CellNavigationRouteImport } from './routes/CellNavigation'
import { Route as AnimationRouteImport } from './routes/Animation'
import { Route as AllFeaturesRouteImport } from './routes/AllFeatures'
import { Route as IndexRouteImport } from './routes/index'
const VariableRowHeightRoute = VariableRowHeightRouteImport.update({
id: '/VariableRowHeight',
path: '/VariableRowHeight',
getParentRoute: () => rootRouteImport,
} as any)
const TreeViewRoute = TreeViewRouteImport.update({
id: '/TreeView',
path: '/TreeView',
getParentRoute: () => rootRouteImport,
} as any)
const ScrollToCellRoute = ScrollToCellRouteImport.update({
id: '/ScrollToCell',
path: '/ScrollToCell',
getParentRoute: () => rootRouteImport,
} as any)
const RowsReorderingRoute = RowsReorderingRouteImport.update({
id: '/RowsReordering',
path: '/RowsReordering',
getParentRoute: () => rootRouteImport,
} as any)
const RowGroupingRoute = RowGroupingRouteImport.update({
id: '/RowGrouping',
path: '/RowGrouping',
getParentRoute: () => rootRouteImport,
} as any)
const ResizableGridRoute = ResizableGridRouteImport.update({
id: '/ResizableGrid',
path: '/ResizableGrid',
getParentRoute: () => rootRouteImport,
} as any)
const RangeSelectionRoute = RangeSelectionRouteImport.update({
id: '/RangeSelection',
path: '/RangeSelection',
getParentRoute: () => rootRouteImport,
} as any)
const NoRowsRoute = NoRowsRouteImport.update({
id: '/NoRows',
path: '/NoRows',
getParentRoute: () => rootRouteImport,
} as any)
const MillionCellsRoute = MillionCellsRouteImport.update({
id: '/MillionCells',
path: '/MillionCells',
getParentRoute: () => rootRouteImport,
} as any)
const MasterDetailRoute = MasterDetailRouteImport.update({
id: '/MasterDetail',
path: '/MasterDetail',
getParentRoute: () => rootRouteImport,
} as any)
const InfiniteScrollingRoute = InfiniteScrollingRouteImport.update({
id: '/InfiniteScrolling',
path: '/InfiniteScrolling',
getParentRoute: () => rootRouteImport,
} as any)
const HeaderFiltersRoute = HeaderFiltersRouteImport.update({
id: '/HeaderFilters',
path: '/HeaderFilters',
getParentRoute: () => rootRouteImport,
} as any)
const CustomizableRenderersRoute = CustomizableRenderersRouteImport.update({
id: '/CustomizableRenderers',
path: '/CustomizableRenderers',
getParentRoute: () => rootRouteImport,
} as any)
const ContextMenuRoute = ContextMenuRouteImport.update({
id: '/ContextMenu',
path: '/ContextMenu',
getParentRoute: () => rootRouteImport,
} as any)
const CommonFeaturesRoute = CommonFeaturesRouteImport.update({
id: '/CommonFeatures',
path: '/CommonFeatures',
getParentRoute: () => rootRouteImport,
} as any)
const ColumnsReorderingRoute = ColumnsReorderingRouteImport.update({
id: '/ColumnsReordering',
path: '/ColumnsReordering',
getParentRoute: () => rootRouteImport,
} as any)
const ColumnSpanningRoute = ColumnSpanningRouteImport.update({
id: '/ColumnSpanning',
path: '/ColumnSpanning',
getParentRoute: () => rootRouteImport,
} as any)
const ColumnGroupingRoute = ColumnGroupingRouteImport.update({
id: '/ColumnGrouping',
path: '/ColumnGrouping',
getParentRoute: () => rootRouteImport,
} as any)
const CellNavigationRoute = CellNavigationRouteImport.update({
id: '/CellNavigation',
path: '/CellNavigation',
getParentRoute: () => rootRouteImport,
} as any)
const AnimationRoute = AnimationRouteImport.update({
id: '/Animation',
path: '/Animation',
getParentRoute: () => rootRouteImport,
} as any)
const AllFeaturesRoute = AllFeaturesRouteImport.update({
id: '/AllFeatures',
path: '/AllFeatures',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/AllFeatures': typeof AllFeaturesRoute
'/Animation': typeof AnimationRoute
'/CellNavigation': typeof CellNavigationRoute
'/ColumnGrouping': typeof ColumnGroupingRoute
'/ColumnSpanning': typeof ColumnSpanningRoute
'/ColumnsReordering': typeof ColumnsReorderingRoute
'/CommonFeatures': typeof CommonFeaturesRoute
'/ContextMenu': typeof ContextMenuRoute
'/CustomizableRenderers': typeof CustomizableRenderersRoute
'/HeaderFilters': typeof HeaderFiltersRoute
'/InfiniteScrolling': typeof InfiniteScrollingRoute
'/MasterDetail': typeof MasterDetailRoute
'/MillionCells': typeof MillionCellsRoute
'/NoRows': typeof NoRowsRoute
'/RangeSelection': typeof RangeSelectionRoute
'/ResizableGrid': typeof ResizableGridRoute
'/RowGrouping': typeof RowGroupingRoute
'/RowsReordering': typeof RowsReorderingRoute
'/ScrollToCell': typeof ScrollToCellRoute
'/TreeView': typeof TreeViewRoute
'/VariableRowHeight': typeof VariableRowHeightRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
'/AllFeatures': typeof AllFeaturesRoute
'/Animation': typeof AnimationRoute
'/CellNavigation': typeof CellNavigationRoute
'/ColumnGrouping': typeof ColumnGroupingRoute
'/ColumnSpanning': typeof ColumnSpanningRoute
'/ColumnsReordering': typeof ColumnsReorderingRoute
'/CommonFeatures': typeof CommonFeaturesRoute
'/ContextMenu': typeof ContextMenuRoute
'/CustomizableRenderers': typeof CustomizableRenderersRoute
'/HeaderFilters': typeof HeaderFiltersRoute
'/InfiniteScrolling': typeof InfiniteScrollingRoute
'/MasterDetail': typeof MasterDetailRoute
'/MillionCells': typeof MillionCellsRoute
'/NoRows': typeof NoRowsRoute
'/RangeSelection': typeof RangeSelectionRoute
'/ResizableGrid': typeof ResizableGridRoute
'/RowGrouping': typeof RowGroupingRoute
'/RowsReordering': typeof RowsReorderingRoute
'/ScrollToCell': typeof ScrollToCellRoute
'/TreeView': typeof TreeViewRoute
'/VariableRowHeight': typeof VariableRowHeightRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/AllFeatures': typeof AllFeaturesRoute
'/Animation': typeof AnimationRoute
'/CellNavigation': typeof CellNavigationRoute
'/ColumnGrouping': typeof ColumnGroupingRoute
'/ColumnSpanning': typeof ColumnSpanningRoute
'/ColumnsReordering': typeof ColumnsReorderingRoute
'/CommonFeatures': typeof CommonFeaturesRoute
'/ContextMenu': typeof ContextMenuRoute
'/CustomizableRenderers': typeof CustomizableRenderersRoute
'/HeaderFilters': typeof HeaderFiltersRoute
'/InfiniteScrolling': typeof InfiniteScrollingRoute
'/MasterDetail': typeof MasterDetailRoute
'/MillionCells': typeof MillionCellsRoute
'/NoRows': typeof NoRowsRoute
'/RangeSelection': typeof RangeSelectionRoute
'/ResizableGrid': typeof ResizableGridRoute
'/RowGrouping': typeof RowGroupingRoute
'/RowsReordering': typeof RowsReorderingRoute
'/ScrollToCell': typeof ScrollToCellRoute
'/TreeView': typeof TreeViewRoute
'/VariableRowHeight': typeof VariableRowHeightRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/'
| '/AllFeatures'
| '/Animation'
| '/CellNavigation'
| '/ColumnGrouping'
| '/ColumnSpanning'
| '/ColumnsReordering'
| '/CommonFeatures'
| '/ContextMenu'
| '/CustomizableRenderers'
| '/HeaderFilters'
| '/InfiniteScrolling'
| '/MasterDetail'
| '/MillionCells'
| '/NoRows'
| '/RangeSelection'
| '/ResizableGrid'
| '/RowGrouping'
| '/RowsReordering'
| '/ScrollToCell'
| '/TreeView'
| '/VariableRowHeight'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
| '/AllFeatures'
| '/Animation'
| '/CellNavigation'
| '/ColumnGrouping'
| '/ColumnSpanning'
| '/ColumnsReordering'
| '/CommonFeatures'
| '/ContextMenu'
| '/CustomizableRenderers'
| '/HeaderFilters'
| '/InfiniteScrolling'
| '/MasterDetail'
| '/MillionCells'
| '/NoRows'
| '/RangeSelection'
| '/ResizableGrid'
| '/RowGrouping'
| '/RowsReordering'
| '/ScrollToCell'
| '/TreeView'
| '/VariableRowHeight'
id:
| '__root__'
| '/'
| '/AllFeatures'
| '/Animation'
| '/CellNavigation'
| '/ColumnGrouping'
| '/ColumnSpanning'
| '/ColumnsReordering'
| '/CommonFeatures'
| '/ContextMenu'
| '/CustomizableRenderers'
| '/HeaderFilters'
| '/InfiniteScrolling'
| '/MasterDetail'
| '/MillionCells'
| '/NoRows'
| '/RangeSelection'
| '/ResizableGrid'
| '/RowGrouping'
| '/RowsReordering'
| '/ScrollToCell'
| '/TreeView'
| '/VariableRowHeight'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AllFeaturesRoute: typeof AllFeaturesRoute
AnimationRoute: typeof AnimationRoute
CellNavigationRoute: typeof CellNavigationRoute
ColumnGroupingRoute: typeof ColumnGroupingRoute
ColumnSpanningRoute: typeof ColumnSpanningRoute
ColumnsReorderingRoute: typeof ColumnsReorderingRoute
CommonFeaturesRoute: typeof CommonFeaturesRoute
ContextMenuRoute: typeof ContextMenuRoute
CustomizableRenderersRoute: typeof CustomizableRenderersRoute
HeaderFiltersRoute: typeof HeaderFiltersRoute
InfiniteScrollingRoute: typeof InfiniteScrollingRoute
MasterDetailRoute: typeof MasterDetailRoute
MillionCellsRoute: typeof MillionCellsRoute
NoRowsRoute: typeof NoRowsRoute
RangeSelectionRoute: typeof RangeSelectionRoute
ResizableGridRoute: typeof ResizableGridRoute
RowGroupingRoute: typeof RowGroupingRoute
RowsReorderingRoute: typeof RowsReorderingRoute
ScrollToCellRoute: typeof ScrollToCellRoute
TreeViewRoute: typeof TreeViewRoute
VariableRowHeightRoute: typeof VariableRowHeightRoute
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/VariableRowHeight': {
id: '/VariableRowHeight'
path: '/VariableRowHeight'
fullPath: '/VariableRowHeight'
preLoaderRoute: typeof VariableRowHeightRouteImport
parentRoute: typeof rootRouteImport
}
'/TreeView': {
id: '/TreeView'
path: '/TreeView'
fullPath: '/TreeView'
preLoaderRoute: typeof TreeViewRouteImport
parentRoute: typeof rootRouteImport
}
'/ScrollToCell': {
id: '/ScrollToCell'
path: '/ScrollToCell'
fullPath: '/ScrollToCell'
preLoaderRoute: typeof ScrollToCellRouteImport
parentRoute: typeof rootRouteImport
}
'/RowsReordering': {
id: '/RowsReordering'
path: '/RowsReordering'
fullPath: '/RowsReordering'
preLoaderRoute: typeof RowsReorderingRouteImport
parentRoute: typeof rootRouteImport
}
'/RowGrouping': {
id: '/RowGrouping'
path: '/RowGrouping'
fullPath: '/RowGrouping'
preLoaderRoute: typeof RowGroupingRouteImport
parentRoute: typeof rootRouteImport
}
'/ResizableGrid': {
id: '/ResizableGrid'
path: '/ResizableGrid'
fullPath: '/ResizableGrid'
preLoaderRoute: typeof ResizableGridRouteImport
parentRoute: typeof rootRouteImport
}
'/RangeSelection': {
id: '/RangeSelection'
path: '/RangeSelection'
fullPath: '/RangeSelection'
preLoaderRoute: typeof RangeSelectionRouteImport
parentRoute: typeof rootRouteImport
}
'/NoRows': {
id: '/NoRows'
path: '/NoRows'
fullPath: '/NoRows'
preLoaderRoute: typeof NoRowsRouteImport
parentRoute: typeof rootRouteImport
}
'/MillionCells': {
id: '/MillionCells'
path: '/MillionCells'
fullPath: '/MillionCells'
preLoaderRoute: typeof MillionCellsRouteImport
parentRoute: typeof rootRouteImport
}
'/MasterDetail': {
id: '/MasterDetail'
path: '/MasterDetail'
fullPath: '/MasterDetail'
preLoaderRoute: typeof MasterDetailRouteImport
parentRoute: typeof rootRouteImport
}
'/InfiniteScrolling': {
id: '/InfiniteScrolling'
path: '/InfiniteScrolling'
fullPath: '/InfiniteScrolling'
preLoaderRoute: typeof InfiniteScrollingRouteImport
parentRoute: typeof rootRouteImport
}
'/HeaderFilters': {
id: '/HeaderFilters'
path: '/HeaderFilters'
fullPath: '/HeaderFilters'
preLoaderRoute: typeof HeaderFiltersRouteImport
parentRoute: typeof rootRouteImport
}
'/CustomizableRenderers': {
id: '/CustomizableRenderers'
path: '/CustomizableRenderers'
fullPath: '/CustomizableRenderers'
preLoaderRoute: typeof CustomizableRenderersRouteImport
parentRoute: typeof rootRouteImport
}
'/ContextMenu': {
id: '/ContextMenu'
path: '/ContextMenu'
fullPath: '/ContextMenu'
preLoaderRoute: typeof ContextMenuRouteImport
parentRoute: typeof rootRouteImport
}
'/CommonFeatures': {
id: '/CommonFeatures'
path: '/CommonFeatures'
fullPath: '/CommonFeatures'
preLoaderRoute: typeof CommonFeaturesRouteImport
parentRoute: typeof rootRouteImport
}
'/ColumnsReordering': {
id: '/ColumnsReordering'
path: '/ColumnsReordering'
fullPath: '/ColumnsReordering'
preLoaderRoute: typeof ColumnsReorderingRouteImport
parentRoute: typeof rootRouteImport
}
'/ColumnSpanning': {
id: '/ColumnSpanning'
path: '/ColumnSpanning'
fullPath: '/ColumnSpanning'
preLoaderRoute: typeof ColumnSpanningRouteImport
parentRoute: typeof rootRouteImport
}
'/ColumnGrouping': {
id: '/ColumnGrouping'
path: '/ColumnGrouping'
fullPath: '/ColumnGrouping'
preLoaderRoute: typeof ColumnGroupingRouteImport
parentRoute: typeof rootRouteImport
}
'/CellNavigation': {
id: '/CellNavigation'
path: '/CellNavigation'
fullPath: '/CellNavigation'
preLoaderRoute: typeof CellNavigationRouteImport
parentRoute: typeof rootRouteImport
}
'/Animation': {
id: '/Animation'
path: '/Animation'
fullPath: '/Animation'
preLoaderRoute: typeof AnimationRouteImport
parentRoute: typeof rootRouteImport
}
'/AllFeatures': {
id: '/AllFeatures'
path: '/AllFeatures'
fullPath: '/AllFeatures'
preLoaderRoute: typeof AllFeaturesRouteImport
parentRoute: typeof rootRouteImport
}
'/': {
id: '/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof IndexRouteImport
parentRoute: typeof rootRouteImport
}
}
}
declare module './routes/index' {
const createFileRoute: CreateFileRoute<
'/',
FileRoutesByPath['/']['parentRoute'],
FileRoutesByPath['/']['id'],
FileRoutesByPath['/']['path'],
FileRoutesByPath['/']['fullPath']
>
}
declare module './routes/AllFeatures' {
const createFileRoute: CreateFileRoute<
'/AllFeatures',
FileRoutesByPath['/AllFeatures']['parentRoute'],
FileRoutesByPath['/AllFeatures']['id'],
FileRoutesByPath['/AllFeatures']['path'],
FileRoutesByPath['/AllFeatures']['fullPath']
>
}
declare module './routes/Animation' {
const createFileRoute: CreateFileRoute<
'/Animation',
FileRoutesByPath['/Animation']['parentRoute'],
FileRoutesByPath['/Animation']['id'],
FileRoutesByPath['/Animation']['path'],
FileRoutesByPath['/Animation']['fullPath']
>
}
declare module './routes/CellNavigation' {
const createFileRoute: CreateFileRoute<
'/CellNavigation',
FileRoutesByPath['/CellNavigation']['parentRoute'],
FileRoutesByPath['/CellNavigation']['id'],
FileRoutesByPath['/CellNavigation']['path'],
FileRoutesByPath['/CellNavigation']['fullPath']
>
}
declare module './routes/ColumnGrouping' {
const createFileRoute: CreateFileRoute<
'/ColumnGrouping',
FileRoutesByPath['/ColumnGrouping']['parentRoute'],
FileRoutesByPath['/ColumnGrouping']['id'],
FileRoutesByPath['/ColumnGrouping']['path'],
FileRoutesByPath['/ColumnGrouping']['fullPath']
>
}
declare module './routes/ColumnSpanning' {
const createFileRoute: CreateFileRoute<
'/ColumnSpanning',
FileRoutesByPath['/ColumnSpanning']['parentRoute'],
FileRoutesByPath['/ColumnSpanning']['id'],
FileRoutesByPath['/ColumnSpanning']['path'],
FileRoutesByPath['/ColumnSpanning']['fullPath']
>
}
declare module './routes/ColumnsReordering' {
const createFileRoute: CreateFileRoute<
'/ColumnsReordering',
FileRoutesByPath['/ColumnsReordering']['parentRoute'],
FileRoutesByPath['/ColumnsReordering']['id'],
FileRoutesByPath['/ColumnsReordering']['path'],
FileRoutesByPath['/ColumnsReordering']['fullPath']
>
}
declare module './routes/CommonFeatures' {
const createFileRoute: CreateFileRoute<
'/CommonFeatures',
FileRoutesByPath['/CommonFeatures']['parentRoute'],
FileRoutesByPath['/CommonFeatures']['id'],
FileRoutesByPath['/CommonFeatures']['path'],
FileRoutesByPath['/CommonFeatures']['fullPath']
>
}
declare module './routes/ContextMenu' {
const createFileRoute: CreateFileRoute<
'/ContextMenu',
FileRoutesByPath['/ContextMenu']['parentRoute'],
FileRoutesByPath['/ContextMenu']['id'],
FileRoutesByPath['/ContextMenu']['path'],
FileRoutesByPath['/ContextMenu']['fullPath']
>
}
declare module './routes/CustomizableRenderers' {
const createFileRoute: CreateFileRoute<
'/CustomizableRenderers',
FileRoutesByPath['/CustomizableRenderers']['parentRoute'],
FileRoutesByPath['/CustomizableRenderers']['id'],
FileRoutesByPath['/CustomizableRenderers']['path'],
FileRoutesByPath['/CustomizableRenderers']['fullPath']
>
}
declare module './routes/HeaderFilters' {
const createFileRoute: CreateFileRoute<
'/HeaderFilters',
FileRoutesByPath['/HeaderFilters']['parentRoute'],
FileRoutesByPath['/HeaderFilters']['id'],
FileRoutesByPath['/HeaderFilters']['path'],
FileRoutesByPath['/HeaderFilters']['fullPath']
>
}
declare module './routes/InfiniteScrolling' {
const createFileRoute: CreateFileRoute<
'/InfiniteScrolling',
FileRoutesByPath['/InfiniteScrolling']['parentRoute'],
FileRoutesByPath['/InfiniteScrolling']['id'],
FileRoutesByPath['/InfiniteScrolling']['path'],
FileRoutesByPath['/InfiniteScrolling']['fullPath']
>
}
declare module './routes/MasterDetail' {
const createFileRoute: CreateFileRoute<
'/MasterDetail',
FileRoutesByPath['/MasterDetail']['parentRoute'],
FileRoutesByPath['/MasterDetail']['id'],
FileRoutesByPath['/MasterDetail']['path'],
FileRoutesByPath['/MasterDetail']['fullPath']
>
}
declare module './routes/MillionCells' {
const createFileRoute: CreateFileRoute<
'/MillionCells',
FileRoutesByPath['/MillionCells']['parentRoute'],
FileRoutesByPath['/MillionCells']['id'],
FileRoutesByPath['/MillionCells']['path'],
FileRoutesByPath['/MillionCells']['fullPath']
>
}
declare module './routes/NoRows' {
const createFileRoute: CreateFileRoute<
'/NoRows',
FileRoutesByPath['/NoRows']['parentRoute'],
FileRoutesByPath['/NoRows']['id'],
FileRoutesByPath['/NoRows']['path'],
FileRoutesByPath['/NoRows']['fullPath']
>
}
declare module './routes/RangeSelection' {
const createFileRoute: CreateFileRoute<
'/RangeSelection',
FileRoutesByPath['/RangeSelection']['parentRoute'],
FileRoutesByPath['/RangeSelection']['id'],
FileRoutesByPath['/RangeSelection']['path'],
FileRoutesByPath['/RangeSelection']['fullPath']
>
}
declare module './routes/ResizableGrid' {
const createFileRoute: CreateFileRoute<
'/ResizableGrid',
FileRoutesByPath['/ResizableGrid']['parentRoute'],
FileRoutesByPath['/ResizableGrid']['id'],
FileRoutesByPath['/ResizableGrid']['path'],
FileRoutesByPath['/ResizableGrid']['fullPath']
>
}
declare module './routes/RowGrouping' {
const createFileRoute: CreateFileRoute<
'/RowGrouping',
FileRoutesByPath['/RowGrouping']['parentRoute'],
FileRoutesByPath['/RowGrouping']['id'],
FileRoutesByPath['/RowGrouping']['path'],
FileRoutesByPath['/RowGrouping']['fullPath']
>
}
declare module './routes/RowsReordering' {
const createFileRoute: CreateFileRoute<
'/RowsReordering',
FileRoutesByPath['/RowsReordering']['parentRoute'],
FileRoutesByPath['/RowsReordering']['id'],
FileRoutesByPath['/RowsReordering']['path'],
FileRoutesByPath['/RowsReordering']['fullPath']
>
}
declare module './routes/ScrollToCell' {
const createFileRoute: CreateFileRoute<
'/ScrollToCell',
FileRoutesByPath['/ScrollToCell']['parentRoute'],
FileRoutesByPath['/ScrollToCell']['id'],
FileRoutesByPath['/ScrollToCell']['path'],
FileRoutesByPath['/ScrollToCell']['fullPath']
>
}
declare module './routes/TreeView' {
const createFileRoute: CreateFileRoute<
'/TreeView',
FileRoutesByPath['/TreeView']['parentRoute'],
FileRoutesByPath['/TreeView']['id'],
FileRoutesByPath['/TreeView']['path'],
FileRoutesByPath['/TreeView']['fullPath']
>
}
declare module './routes/VariableRowHeight' {
const createFileRoute: CreateFileRoute<
'/VariableRowHeight',
FileRoutesByPath['/VariableRowHeight']['parentRoute'],
FileRoutesByPath['/VariableRowHeight']['id'],
FileRoutesByPath['/VariableRowHeight']['path'],
FileRoutesByPath['/VariableRowHeight']['fullPath']
>
}
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AllFeaturesRoute: AllFeaturesRoute,
AnimationRoute: AnimationRoute,
CellNavigationRoute: CellNavigationRoute,
ColumnGroupingRoute: ColumnGroupingRoute,
ColumnSpanningRoute: ColumnSpanningRoute,
ColumnsReorderingRoute: ColumnsReorderingRoute,
CommonFeaturesRoute: CommonFeaturesRoute,
ContextMenuRoute: ContextMenuRoute,
CustomizableRenderersRoute: CustomizableRenderersRoute,
HeaderFiltersRoute: HeaderFiltersRoute,
InfiniteScrollingRoute: InfiniteScrollingRoute,
MasterDetailRoute: MasterDetailRoute,
MillionCellsRoute: MillionCellsRoute,
NoRowsRoute: NoRowsRoute,
RangeSelectionRoute: RangeSelectionRoute,
ResizableGridRoute: ResizableGridRoute,
RowGroupingRoute: RowGroupingRoute,
RowsReorderingRoute: RowsReorderingRoute,
ScrollToCellRoute: ScrollToCellRoute,
TreeViewRoute: TreeViewRoute,
VariableRowHeightRoute: VariableRowHeightRoute,
}
export const routeTree = rootRouteImport
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()