-
-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathrouteTree.gen.ts
More file actions
1128 lines (1059 loc) · 39.7 KB
/
routeTree.gen.ts
File metadata and controls
1128 lines (1059 loc) · 39.7 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
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* 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 Routes
import { Route as rootRoute } from './routes/__root'
import { Route as SponsorsEmbedImport } from './routes/sponsors-embed'
import { Route as MerchImport } from './routes/merch'
import { Route as LoginImport } from './routes/login'
import { Route as DashboardImport } from './routes/dashboard'
import { Route as LibrariesRouteImport } from './routes/_libraries/route'
import { Route as LibraryIdRouteImport } from './routes/$libraryId/route'
import { Route as StatsIndexImport } from './routes/stats/index'
import { Route as LibrariesIndexImport } from './routes/_libraries/index'
import { Route as LibraryIdIndexImport } from './routes/$libraryId/index'
import { Route as LibrariesTermsImport } from './routes/_libraries/terms'
import { Route as LibrariesSupportImport } from './routes/_libraries/support'
import { Route as LibrariesPrivacyImport } from './routes/_libraries/privacy'
import { Route as LibrariesLearnImport } from './routes/_libraries/learn'
import { Route as LibrariesEthosImport } from './routes/_libraries/ethos'
import { Route as LibrariesDedicatedSupportImport } from './routes/_libraries/dedicated-support'
import { Route as LibrariesBlogImport } from './routes/_libraries/blog'
import { Route as LibraryIdVersionImport } from './routes/$libraryId/$version'
import { Route as StatsNpmIndexImport } from './routes/stats/npm/index'
import { Route as LibrariesBlogIndexImport } from './routes/_libraries/blog.index'
import { Route as LibrariesBlogSplatImport } from './routes/_libraries/blog.$'
import { Route as LibraryIdVersionDocsImport } from './routes/$libraryId/$version.docs'
import { Route as LibrariesVirtualVersionIndexImport } from './routes/_libraries/virtual.$version.index'
import { Route as LibrariesTableVersionIndexImport } from './routes/_libraries/table.$version.index'
import { Route as LibrariesStoreVersionIndexImport } from './routes/_libraries/store.$version.index'
import { Route as LibrariesStartVersionIndexImport } from './routes/_libraries/start.$version.index'
import { Route as LibrariesRouterVersionIndexImport } from './routes/_libraries/router.$version.index'
import { Route as LibrariesRangerVersionIndexImport } from './routes/_libraries/ranger.$version.index'
import { Route as LibrariesQueryVersionIndexImport } from './routes/_libraries/query.$version.index'
import { Route as LibrariesPacerVersionIndexImport } from './routes/_libraries/pacer.$version.index'
import { Route as LibrariesFormVersionIndexImport } from './routes/_libraries/form.$version.index'
import { Route as LibrariesConfigVersionIndexImport } from './routes/_libraries/config.$version.index'
import { Route as LibraryIdVersionDocsIndexImport } from './routes/$libraryId/$version.docs.index'
import { Route as LibraryIdVersionDocsSplatImport } from './routes/$libraryId/$version.docs.$'
import { Route as LibraryIdVersionDocsFrameworkIndexImport } from './routes/$libraryId/$version.docs.framework.index'
import { Route as LibraryIdVersionDocsFrameworkFrameworkIndexImport } from './routes/$libraryId/$version.docs.framework.$framework.index'
import { Route as LibraryIdVersionDocsFrameworkFrameworkSplatImport } from './routes/$libraryId/$version.docs.framework.$framework.$'
import { Route as LibraryIdVersionDocsFrameworkFrameworkExamplesSplatImport } from './routes/$libraryId/$version.docs.framework.$framework.examples.$'
// Create/Update Routes
const SponsorsEmbedRoute = SponsorsEmbedImport.update({
id: '/sponsors-embed',
path: '/sponsors-embed',
getParentRoute: () => rootRoute,
} as any)
const MerchRoute = MerchImport.update({
id: '/merch',
path: '/merch',
getParentRoute: () => rootRoute,
} as any)
const LoginRoute = LoginImport.update({
id: '/login',
path: '/login',
getParentRoute: () => rootRoute,
} as any)
const DashboardRoute = DashboardImport.update({
id: '/dashboard',
path: '/dashboard',
getParentRoute: () => rootRoute,
} as any)
const LibrariesRouteRoute = LibrariesRouteImport.update({
id: '/_libraries',
getParentRoute: () => rootRoute,
} as any)
const LibraryIdRouteRoute = LibraryIdRouteImport.update({
id: '/$libraryId',
path: '/$libraryId',
getParentRoute: () => rootRoute,
} as any)
const StatsIndexRoute = StatsIndexImport.update({
id: '/stats/',
path: '/stats/',
getParentRoute: () => rootRoute,
} as any)
const LibrariesIndexRoute = LibrariesIndexImport.update({
id: '/',
path: '/',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibraryIdIndexRoute = LibraryIdIndexImport.update({
id: '/',
path: '/',
getParentRoute: () => LibraryIdRouteRoute,
} as any)
const LibrariesTermsRoute = LibrariesTermsImport.update({
id: '/terms',
path: '/terms',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesSupportRoute = LibrariesSupportImport.update({
id: '/support',
path: '/support',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesPrivacyRoute = LibrariesPrivacyImport.update({
id: '/privacy',
path: '/privacy',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesLearnRoute = LibrariesLearnImport.update({
id: '/learn',
path: '/learn',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesEthosRoute = LibrariesEthosImport.update({
id: '/ethos',
path: '/ethos',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesDedicatedSupportRoute = LibrariesDedicatedSupportImport.update({
id: '/dedicated-support',
path: '/dedicated-support',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesBlogRoute = LibrariesBlogImport.update({
id: '/blog',
path: '/blog',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibraryIdVersionRoute = LibraryIdVersionImport.update({
id: '/$version',
path: '/$version',
getParentRoute: () => LibraryIdRouteRoute,
} as any)
const StatsNpmIndexRoute = StatsNpmIndexImport.update({
id: '/stats/npm/',
path: '/stats/npm/',
getParentRoute: () => rootRoute,
} as any)
const LibrariesBlogIndexRoute = LibrariesBlogIndexImport.update({
id: '/',
path: '/',
getParentRoute: () => LibrariesBlogRoute,
} as any)
const LibrariesBlogSplatRoute = LibrariesBlogSplatImport.update({
id: '/$',
path: '/$',
getParentRoute: () => LibrariesBlogRoute,
} as any)
const LibraryIdVersionDocsRoute = LibraryIdVersionDocsImport.update({
id: '/docs',
path: '/docs',
getParentRoute: () => LibraryIdVersionRoute,
} as any)
const LibrariesVirtualVersionIndexRoute =
LibrariesVirtualVersionIndexImport.update({
id: '/virtual/$version/',
path: '/virtual/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesTableVersionIndexRoute = LibrariesTableVersionIndexImport.update(
{
id: '/table/$version/',
path: '/table/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any,
)
const LibrariesStoreVersionIndexRoute = LibrariesStoreVersionIndexImport.update(
{
id: '/store/$version/',
path: '/store/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any,
)
const LibrariesStartVersionIndexRoute = LibrariesStartVersionIndexImport.update(
{
id: '/start/$version/',
path: '/start/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any,
)
const LibrariesRouterVersionIndexRoute =
LibrariesRouterVersionIndexImport.update({
id: '/router/$version/',
path: '/router/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesRangerVersionIndexRoute =
LibrariesRangerVersionIndexImport.update({
id: '/ranger/$version/',
path: '/ranger/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesQueryVersionIndexRoute = LibrariesQueryVersionIndexImport.update(
{
id: '/query/$version/',
path: '/query/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any,
)
const LibrariesPacerVersionIndexRoute = LibrariesPacerVersionIndexImport.update(
{
id: '/pacer/$version/',
path: '/pacer/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any,
)
const LibrariesFormVersionIndexRoute = LibrariesFormVersionIndexImport.update({
id: '/form/$version/',
path: '/form/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibrariesConfigVersionIndexRoute =
LibrariesConfigVersionIndexImport.update({
id: '/config/$version/',
path: '/config/$version/',
getParentRoute: () => LibrariesRouteRoute,
} as any)
const LibraryIdVersionDocsIndexRoute = LibraryIdVersionDocsIndexImport.update({
id: '/',
path: '/',
getParentRoute: () => LibraryIdVersionDocsRoute,
} as any)
const LibraryIdVersionDocsSplatRoute = LibraryIdVersionDocsSplatImport.update({
id: '/$',
path: '/$',
getParentRoute: () => LibraryIdVersionDocsRoute,
} as any)
const LibraryIdVersionDocsFrameworkIndexRoute =
LibraryIdVersionDocsFrameworkIndexImport.update({
id: '/framework/',
path: '/framework/',
getParentRoute: () => LibraryIdVersionDocsRoute,
} as any)
const LibraryIdVersionDocsFrameworkFrameworkIndexRoute =
LibraryIdVersionDocsFrameworkFrameworkIndexImport.update({
id: '/framework/$framework/',
path: '/framework/$framework/',
getParentRoute: () => LibraryIdVersionDocsRoute,
} as any)
const LibraryIdVersionDocsFrameworkFrameworkSplatRoute =
LibraryIdVersionDocsFrameworkFrameworkSplatImport.update({
id: '/framework/$framework/$',
path: '/framework/$framework/$',
getParentRoute: () => LibraryIdVersionDocsRoute,
} as any)
const LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute =
LibraryIdVersionDocsFrameworkFrameworkExamplesSplatImport.update({
id: '/framework/$framework/examples/$',
path: '/framework/$framework/examples/$',
getParentRoute: () => LibraryIdVersionDocsRoute,
} as any)
// Populate the FileRoutesByPath interface
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/$libraryId': {
id: '/$libraryId'
path: '/$libraryId'
fullPath: '/$libraryId'
preLoaderRoute: typeof LibraryIdRouteImport
parentRoute: typeof rootRoute
}
'/_libraries': {
id: '/_libraries'
path: ''
fullPath: ''
preLoaderRoute: typeof LibrariesRouteImport
parentRoute: typeof rootRoute
}
'/dashboard': {
id: '/dashboard'
path: '/dashboard'
fullPath: '/dashboard'
preLoaderRoute: typeof DashboardImport
parentRoute: typeof rootRoute
}
'/login': {
id: '/login'
path: '/login'
fullPath: '/login'
preLoaderRoute: typeof LoginImport
parentRoute: typeof rootRoute
}
'/merch': {
id: '/merch'
path: '/merch'
fullPath: '/merch'
preLoaderRoute: typeof MerchImport
parentRoute: typeof rootRoute
}
'/sponsors-embed': {
id: '/sponsors-embed'
path: '/sponsors-embed'
fullPath: '/sponsors-embed'
preLoaderRoute: typeof SponsorsEmbedImport
parentRoute: typeof rootRoute
}
'/$libraryId/$version': {
id: '/$libraryId/$version'
path: '/$version'
fullPath: '/$libraryId/$version'
preLoaderRoute: typeof LibraryIdVersionImport
parentRoute: typeof LibraryIdRouteImport
}
'/_libraries/blog': {
id: '/_libraries/blog'
path: '/blog'
fullPath: '/blog'
preLoaderRoute: typeof LibrariesBlogImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/dedicated-support': {
id: '/_libraries/dedicated-support'
path: '/dedicated-support'
fullPath: '/dedicated-support'
preLoaderRoute: typeof LibrariesDedicatedSupportImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/ethos': {
id: '/_libraries/ethos'
path: '/ethos'
fullPath: '/ethos'
preLoaderRoute: typeof LibrariesEthosImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/learn': {
id: '/_libraries/learn'
path: '/learn'
fullPath: '/learn'
preLoaderRoute: typeof LibrariesLearnImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/privacy': {
id: '/_libraries/privacy'
path: '/privacy'
fullPath: '/privacy'
preLoaderRoute: typeof LibrariesPrivacyImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/support': {
id: '/_libraries/support'
path: '/support'
fullPath: '/support'
preLoaderRoute: typeof LibrariesSupportImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/terms': {
id: '/_libraries/terms'
path: '/terms'
fullPath: '/terms'
preLoaderRoute: typeof LibrariesTermsImport
parentRoute: typeof LibrariesRouteImport
}
'/$libraryId/': {
id: '/$libraryId/'
path: '/'
fullPath: '/$libraryId/'
preLoaderRoute: typeof LibraryIdIndexImport
parentRoute: typeof LibraryIdRouteImport
}
'/_libraries/': {
id: '/_libraries/'
path: '/'
fullPath: '/'
preLoaderRoute: typeof LibrariesIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/stats/': {
id: '/stats/'
path: '/stats'
fullPath: '/stats'
preLoaderRoute: typeof StatsIndexImport
parentRoute: typeof rootRoute
}
'/$libraryId/$version/docs': {
id: '/$libraryId/$version/docs'
path: '/docs'
fullPath: '/$libraryId/$version/docs'
preLoaderRoute: typeof LibraryIdVersionDocsImport
parentRoute: typeof LibraryIdVersionImport
}
'/_libraries/blog/$': {
id: '/_libraries/blog/$'
path: '/$'
fullPath: '/blog/$'
preLoaderRoute: typeof LibrariesBlogSplatImport
parentRoute: typeof LibrariesBlogImport
}
'/_libraries/blog/': {
id: '/_libraries/blog/'
path: '/'
fullPath: '/blog/'
preLoaderRoute: typeof LibrariesBlogIndexImport
parentRoute: typeof LibrariesBlogImport
}
'/stats/npm/': {
id: '/stats/npm/'
path: '/stats/npm'
fullPath: '/stats/npm'
preLoaderRoute: typeof StatsNpmIndexImport
parentRoute: typeof rootRoute
}
'/$libraryId/$version/docs/$': {
id: '/$libraryId/$version/docs/$'
path: '/$'
fullPath: '/$libraryId/$version/docs/$'
preLoaderRoute: typeof LibraryIdVersionDocsSplatImport
parentRoute: typeof LibraryIdVersionDocsImport
}
'/$libraryId/$version/docs/': {
id: '/$libraryId/$version/docs/'
path: '/'
fullPath: '/$libraryId/$version/docs/'
preLoaderRoute: typeof LibraryIdVersionDocsIndexImport
parentRoute: typeof LibraryIdVersionDocsImport
}
'/_libraries/config/$version/': {
id: '/_libraries/config/$version/'
path: '/config/$version'
fullPath: '/config/$version'
preLoaderRoute: typeof LibrariesConfigVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/form/$version/': {
id: '/_libraries/form/$version/'
path: '/form/$version'
fullPath: '/form/$version'
preLoaderRoute: typeof LibrariesFormVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/pacer/$version/': {
id: '/_libraries/pacer/$version/'
path: '/pacer/$version'
fullPath: '/pacer/$version'
preLoaderRoute: typeof LibrariesPacerVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/query/$version/': {
id: '/_libraries/query/$version/'
path: '/query/$version'
fullPath: '/query/$version'
preLoaderRoute: typeof LibrariesQueryVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/ranger/$version/': {
id: '/_libraries/ranger/$version/'
path: '/ranger/$version'
fullPath: '/ranger/$version'
preLoaderRoute: typeof LibrariesRangerVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/router/$version/': {
id: '/_libraries/router/$version/'
path: '/router/$version'
fullPath: '/router/$version'
preLoaderRoute: typeof LibrariesRouterVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/start/$version/': {
id: '/_libraries/start/$version/'
path: '/start/$version'
fullPath: '/start/$version'
preLoaderRoute: typeof LibrariesStartVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/store/$version/': {
id: '/_libraries/store/$version/'
path: '/store/$version'
fullPath: '/store/$version'
preLoaderRoute: typeof LibrariesStoreVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/table/$version/': {
id: '/_libraries/table/$version/'
path: '/table/$version'
fullPath: '/table/$version'
preLoaderRoute: typeof LibrariesTableVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/_libraries/virtual/$version/': {
id: '/_libraries/virtual/$version/'
path: '/virtual/$version'
fullPath: '/virtual/$version'
preLoaderRoute: typeof LibrariesVirtualVersionIndexImport
parentRoute: typeof LibrariesRouteImport
}
'/$libraryId/$version/docs/framework/': {
id: '/$libraryId/$version/docs/framework/'
path: '/framework'
fullPath: '/$libraryId/$version/docs/framework'
preLoaderRoute: typeof LibraryIdVersionDocsFrameworkIndexImport
parentRoute: typeof LibraryIdVersionDocsImport
}
'/$libraryId/$version/docs/framework/$framework/$': {
id: '/$libraryId/$version/docs/framework/$framework/$'
path: '/framework/$framework/$'
fullPath: '/$libraryId/$version/docs/framework/$framework/$'
preLoaderRoute: typeof LibraryIdVersionDocsFrameworkFrameworkSplatImport
parentRoute: typeof LibraryIdVersionDocsImport
}
'/$libraryId/$version/docs/framework/$framework/': {
id: '/$libraryId/$version/docs/framework/$framework/'
path: '/framework/$framework'
fullPath: '/$libraryId/$version/docs/framework/$framework'
preLoaderRoute: typeof LibraryIdVersionDocsFrameworkFrameworkIndexImport
parentRoute: typeof LibraryIdVersionDocsImport
}
'/$libraryId/$version/docs/framework/$framework/examples/$': {
id: '/$libraryId/$version/docs/framework/$framework/examples/$'
path: '/framework/$framework/examples/$'
fullPath: '/$libraryId/$version/docs/framework/$framework/examples/$'
preLoaderRoute: typeof LibraryIdVersionDocsFrameworkFrameworkExamplesSplatImport
parentRoute: typeof LibraryIdVersionDocsImport
}
}
}
// Create and export the route tree
interface LibraryIdVersionDocsRouteChildren {
LibraryIdVersionDocsSplatRoute: typeof LibraryIdVersionDocsSplatRoute
LibraryIdVersionDocsIndexRoute: typeof LibraryIdVersionDocsIndexRoute
LibraryIdVersionDocsFrameworkIndexRoute: typeof LibraryIdVersionDocsFrameworkIndexRoute
LibraryIdVersionDocsFrameworkFrameworkSplatRoute: typeof LibraryIdVersionDocsFrameworkFrameworkSplatRoute
LibraryIdVersionDocsFrameworkFrameworkIndexRoute: typeof LibraryIdVersionDocsFrameworkFrameworkIndexRoute
LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute: typeof LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute
}
const LibraryIdVersionDocsRouteChildren: LibraryIdVersionDocsRouteChildren = {
LibraryIdVersionDocsSplatRoute: LibraryIdVersionDocsSplatRoute,
LibraryIdVersionDocsIndexRoute: LibraryIdVersionDocsIndexRoute,
LibraryIdVersionDocsFrameworkIndexRoute:
LibraryIdVersionDocsFrameworkIndexRoute,
LibraryIdVersionDocsFrameworkFrameworkSplatRoute:
LibraryIdVersionDocsFrameworkFrameworkSplatRoute,
LibraryIdVersionDocsFrameworkFrameworkIndexRoute:
LibraryIdVersionDocsFrameworkFrameworkIndexRoute,
LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute:
LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute,
}
const LibraryIdVersionDocsRouteWithChildren =
LibraryIdVersionDocsRoute._addFileChildren(LibraryIdVersionDocsRouteChildren)
interface LibraryIdVersionRouteChildren {
LibraryIdVersionDocsRoute: typeof LibraryIdVersionDocsRouteWithChildren
}
const LibraryIdVersionRouteChildren: LibraryIdVersionRouteChildren = {
LibraryIdVersionDocsRoute: LibraryIdVersionDocsRouteWithChildren,
}
const LibraryIdVersionRouteWithChildren =
LibraryIdVersionRoute._addFileChildren(LibraryIdVersionRouteChildren)
interface LibraryIdRouteRouteChildren {
LibraryIdVersionRoute: typeof LibraryIdVersionRouteWithChildren
LibraryIdIndexRoute: typeof LibraryIdIndexRoute
}
const LibraryIdRouteRouteChildren: LibraryIdRouteRouteChildren = {
LibraryIdVersionRoute: LibraryIdVersionRouteWithChildren,
LibraryIdIndexRoute: LibraryIdIndexRoute,
}
const LibraryIdRouteRouteWithChildren = LibraryIdRouteRoute._addFileChildren(
LibraryIdRouteRouteChildren,
)
interface LibrariesBlogRouteChildren {
LibrariesBlogSplatRoute: typeof LibrariesBlogSplatRoute
LibrariesBlogIndexRoute: typeof LibrariesBlogIndexRoute
}
const LibrariesBlogRouteChildren: LibrariesBlogRouteChildren = {
LibrariesBlogSplatRoute: LibrariesBlogSplatRoute,
LibrariesBlogIndexRoute: LibrariesBlogIndexRoute,
}
const LibrariesBlogRouteWithChildren = LibrariesBlogRoute._addFileChildren(
LibrariesBlogRouteChildren,
)
interface LibrariesRouteRouteChildren {
LibrariesBlogRoute: typeof LibrariesBlogRouteWithChildren
LibrariesDedicatedSupportRoute: typeof LibrariesDedicatedSupportRoute
LibrariesEthosRoute: typeof LibrariesEthosRoute
LibrariesLearnRoute: typeof LibrariesLearnRoute
LibrariesPrivacyRoute: typeof LibrariesPrivacyRoute
LibrariesSupportRoute: typeof LibrariesSupportRoute
LibrariesTermsRoute: typeof LibrariesTermsRoute
LibrariesIndexRoute: typeof LibrariesIndexRoute
LibrariesConfigVersionIndexRoute: typeof LibrariesConfigVersionIndexRoute
LibrariesFormVersionIndexRoute: typeof LibrariesFormVersionIndexRoute
LibrariesPacerVersionIndexRoute: typeof LibrariesPacerVersionIndexRoute
LibrariesQueryVersionIndexRoute: typeof LibrariesQueryVersionIndexRoute
LibrariesRangerVersionIndexRoute: typeof LibrariesRangerVersionIndexRoute
LibrariesRouterVersionIndexRoute: typeof LibrariesRouterVersionIndexRoute
LibrariesStartVersionIndexRoute: typeof LibrariesStartVersionIndexRoute
LibrariesStoreVersionIndexRoute: typeof LibrariesStoreVersionIndexRoute
LibrariesTableVersionIndexRoute: typeof LibrariesTableVersionIndexRoute
LibrariesVirtualVersionIndexRoute: typeof LibrariesVirtualVersionIndexRoute
}
const LibrariesRouteRouteChildren: LibrariesRouteRouteChildren = {
LibrariesBlogRoute: LibrariesBlogRouteWithChildren,
LibrariesDedicatedSupportRoute: LibrariesDedicatedSupportRoute,
LibrariesEthosRoute: LibrariesEthosRoute,
LibrariesLearnRoute: LibrariesLearnRoute,
LibrariesPrivacyRoute: LibrariesPrivacyRoute,
LibrariesSupportRoute: LibrariesSupportRoute,
LibrariesTermsRoute: LibrariesTermsRoute,
LibrariesIndexRoute: LibrariesIndexRoute,
LibrariesConfigVersionIndexRoute: LibrariesConfigVersionIndexRoute,
LibrariesFormVersionIndexRoute: LibrariesFormVersionIndexRoute,
LibrariesPacerVersionIndexRoute: LibrariesPacerVersionIndexRoute,
LibrariesQueryVersionIndexRoute: LibrariesQueryVersionIndexRoute,
LibrariesRangerVersionIndexRoute: LibrariesRangerVersionIndexRoute,
LibrariesRouterVersionIndexRoute: LibrariesRouterVersionIndexRoute,
LibrariesStartVersionIndexRoute: LibrariesStartVersionIndexRoute,
LibrariesStoreVersionIndexRoute: LibrariesStoreVersionIndexRoute,
LibrariesTableVersionIndexRoute: LibrariesTableVersionIndexRoute,
LibrariesVirtualVersionIndexRoute: LibrariesVirtualVersionIndexRoute,
}
const LibrariesRouteRouteWithChildren = LibrariesRouteRoute._addFileChildren(
LibrariesRouteRouteChildren,
)
export interface FileRoutesByFullPath {
'/$libraryId': typeof LibraryIdRouteRouteWithChildren
'': typeof LibrariesRouteRouteWithChildren
'/dashboard': typeof DashboardRoute
'/login': typeof LoginRoute
'/merch': typeof MerchRoute
'/sponsors-embed': typeof SponsorsEmbedRoute
'/$libraryId/$version': typeof LibraryIdVersionRouteWithChildren
'/blog': typeof LibrariesBlogRouteWithChildren
'/dedicated-support': typeof LibrariesDedicatedSupportRoute
'/ethos': typeof LibrariesEthosRoute
'/learn': typeof LibrariesLearnRoute
'/privacy': typeof LibrariesPrivacyRoute
'/support': typeof LibrariesSupportRoute
'/terms': typeof LibrariesTermsRoute
'/$libraryId/': typeof LibraryIdIndexRoute
'/': typeof LibrariesIndexRoute
'/stats': typeof StatsIndexRoute
'/$libraryId/$version/docs': typeof LibraryIdVersionDocsRouteWithChildren
'/blog/$': typeof LibrariesBlogSplatRoute
'/blog/': typeof LibrariesBlogIndexRoute
'/stats/npm': typeof StatsNpmIndexRoute
'/$libraryId/$version/docs/$': typeof LibraryIdVersionDocsSplatRoute
'/$libraryId/$version/docs/': typeof LibraryIdVersionDocsIndexRoute
'/config/$version': typeof LibrariesConfigVersionIndexRoute
'/form/$version': typeof LibrariesFormVersionIndexRoute
'/pacer/$version': typeof LibrariesPacerVersionIndexRoute
'/query/$version': typeof LibrariesQueryVersionIndexRoute
'/ranger/$version': typeof LibrariesRangerVersionIndexRoute
'/router/$version': typeof LibrariesRouterVersionIndexRoute
'/start/$version': typeof LibrariesStartVersionIndexRoute
'/store/$version': typeof LibrariesStoreVersionIndexRoute
'/table/$version': typeof LibrariesTableVersionIndexRoute
'/virtual/$version': typeof LibrariesVirtualVersionIndexRoute
'/$libraryId/$version/docs/framework': typeof LibraryIdVersionDocsFrameworkIndexRoute
'/$libraryId/$version/docs/framework/$framework/$': typeof LibraryIdVersionDocsFrameworkFrameworkSplatRoute
'/$libraryId/$version/docs/framework/$framework': typeof LibraryIdVersionDocsFrameworkFrameworkIndexRoute
'/$libraryId/$version/docs/framework/$framework/examples/$': typeof LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute
}
export interface FileRoutesByTo {
'/dashboard': typeof DashboardRoute
'/login': typeof LoginRoute
'/merch': typeof MerchRoute
'/sponsors-embed': typeof SponsorsEmbedRoute
'/$libraryId/$version': typeof LibraryIdVersionRouteWithChildren
'/dedicated-support': typeof LibrariesDedicatedSupportRoute
'/ethos': typeof LibrariesEthosRoute
'/learn': typeof LibrariesLearnRoute
'/privacy': typeof LibrariesPrivacyRoute
'/support': typeof LibrariesSupportRoute
'/terms': typeof LibrariesTermsRoute
'/$libraryId': typeof LibraryIdIndexRoute
'/': typeof LibrariesIndexRoute
'/stats': typeof StatsIndexRoute
'/blog/$': typeof LibrariesBlogSplatRoute
'/blog': typeof LibrariesBlogIndexRoute
'/stats/npm': typeof StatsNpmIndexRoute
'/$libraryId/$version/docs/$': typeof LibraryIdVersionDocsSplatRoute
'/$libraryId/$version/docs': typeof LibraryIdVersionDocsIndexRoute
'/config/$version': typeof LibrariesConfigVersionIndexRoute
'/form/$version': typeof LibrariesFormVersionIndexRoute
'/pacer/$version': typeof LibrariesPacerVersionIndexRoute
'/query/$version': typeof LibrariesQueryVersionIndexRoute
'/ranger/$version': typeof LibrariesRangerVersionIndexRoute
'/router/$version': typeof LibrariesRouterVersionIndexRoute
'/start/$version': typeof LibrariesStartVersionIndexRoute
'/store/$version': typeof LibrariesStoreVersionIndexRoute
'/table/$version': typeof LibrariesTableVersionIndexRoute
'/virtual/$version': typeof LibrariesVirtualVersionIndexRoute
'/$libraryId/$version/docs/framework': typeof LibraryIdVersionDocsFrameworkIndexRoute
'/$libraryId/$version/docs/framework/$framework/$': typeof LibraryIdVersionDocsFrameworkFrameworkSplatRoute
'/$libraryId/$version/docs/framework/$framework': typeof LibraryIdVersionDocsFrameworkFrameworkIndexRoute
'/$libraryId/$version/docs/framework/$framework/examples/$': typeof LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute
}
export interface FileRoutesById {
__root__: typeof rootRoute
'/$libraryId': typeof LibraryIdRouteRouteWithChildren
'/_libraries': typeof LibrariesRouteRouteWithChildren
'/dashboard': typeof DashboardRoute
'/login': typeof LoginRoute
'/merch': typeof MerchRoute
'/sponsors-embed': typeof SponsorsEmbedRoute
'/$libraryId/$version': typeof LibraryIdVersionRouteWithChildren
'/_libraries/blog': typeof LibrariesBlogRouteWithChildren
'/_libraries/dedicated-support': typeof LibrariesDedicatedSupportRoute
'/_libraries/ethos': typeof LibrariesEthosRoute
'/_libraries/learn': typeof LibrariesLearnRoute
'/_libraries/privacy': typeof LibrariesPrivacyRoute
'/_libraries/support': typeof LibrariesSupportRoute
'/_libraries/terms': typeof LibrariesTermsRoute
'/$libraryId/': typeof LibraryIdIndexRoute
'/_libraries/': typeof LibrariesIndexRoute
'/stats/': typeof StatsIndexRoute
'/$libraryId/$version/docs': typeof LibraryIdVersionDocsRouteWithChildren
'/_libraries/blog/$': typeof LibrariesBlogSplatRoute
'/_libraries/blog/': typeof LibrariesBlogIndexRoute
'/stats/npm/': typeof StatsNpmIndexRoute
'/$libraryId/$version/docs/$': typeof LibraryIdVersionDocsSplatRoute
'/$libraryId/$version/docs/': typeof LibraryIdVersionDocsIndexRoute
'/_libraries/config/$version/': typeof LibrariesConfigVersionIndexRoute
'/_libraries/form/$version/': typeof LibrariesFormVersionIndexRoute
'/_libraries/pacer/$version/': typeof LibrariesPacerVersionIndexRoute
'/_libraries/query/$version/': typeof LibrariesQueryVersionIndexRoute
'/_libraries/ranger/$version/': typeof LibrariesRangerVersionIndexRoute
'/_libraries/router/$version/': typeof LibrariesRouterVersionIndexRoute
'/_libraries/start/$version/': typeof LibrariesStartVersionIndexRoute
'/_libraries/store/$version/': typeof LibrariesStoreVersionIndexRoute
'/_libraries/table/$version/': typeof LibrariesTableVersionIndexRoute
'/_libraries/virtual/$version/': typeof LibrariesVirtualVersionIndexRoute
'/$libraryId/$version/docs/framework/': typeof LibraryIdVersionDocsFrameworkIndexRoute
'/$libraryId/$version/docs/framework/$framework/$': typeof LibraryIdVersionDocsFrameworkFrameworkSplatRoute
'/$libraryId/$version/docs/framework/$framework/': typeof LibraryIdVersionDocsFrameworkFrameworkIndexRoute
'/$libraryId/$version/docs/framework/$framework/examples/$': typeof LibraryIdVersionDocsFrameworkFrameworkExamplesSplatRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/$libraryId'
| ''
| '/dashboard'
| '/login'
| '/merch'
| '/sponsors-embed'
| '/$libraryId/$version'
| '/blog'
| '/dedicated-support'
| '/ethos'
| '/learn'
| '/privacy'
| '/support'
| '/terms'
| '/$libraryId/'
| '/'
| '/stats'
| '/$libraryId/$version/docs'
| '/blog/$'
| '/blog/'
| '/stats/npm'
| '/$libraryId/$version/docs/$'
| '/$libraryId/$version/docs/'
| '/config/$version'
| '/form/$version'
| '/pacer/$version'
| '/query/$version'
| '/ranger/$version'
| '/router/$version'
| '/start/$version'
| '/store/$version'
| '/table/$version'
| '/virtual/$version'
| '/$libraryId/$version/docs/framework'
| '/$libraryId/$version/docs/framework/$framework/$'
| '/$libraryId/$version/docs/framework/$framework'
| '/$libraryId/$version/docs/framework/$framework/examples/$'
fileRoutesByTo: FileRoutesByTo
to:
| '/dashboard'
| '/login'
| '/merch'
| '/sponsors-embed'
| '/$libraryId/$version'
| '/dedicated-support'
| '/ethos'
| '/learn'
| '/privacy'
| '/support'
| '/terms'
| '/$libraryId'
| '/'
| '/stats'
| '/blog/$'
| '/blog'
| '/stats/npm'
| '/$libraryId/$version/docs/$'
| '/$libraryId/$version/docs'
| '/config/$version'
| '/form/$version'
| '/pacer/$version'
| '/query/$version'
| '/ranger/$version'
| '/router/$version'
| '/start/$version'
| '/store/$version'
| '/table/$version'
| '/virtual/$version'
| '/$libraryId/$version/docs/framework'
| '/$libraryId/$version/docs/framework/$framework/$'
| '/$libraryId/$version/docs/framework/$framework'
| '/$libraryId/$version/docs/framework/$framework/examples/$'
id:
| '__root__'
| '/$libraryId'
| '/_libraries'
| '/dashboard'
| '/login'
| '/merch'
| '/sponsors-embed'
| '/$libraryId/$version'
| '/_libraries/blog'
| '/_libraries/dedicated-support'
| '/_libraries/ethos'
| '/_libraries/learn'
| '/_libraries/privacy'
| '/_libraries/support'
| '/_libraries/terms'
| '/$libraryId/'
| '/_libraries/'
| '/stats/'
| '/$libraryId/$version/docs'
| '/_libraries/blog/$'
| '/_libraries/blog/'
| '/stats/npm/'
| '/$libraryId/$version/docs/$'
| '/$libraryId/$version/docs/'
| '/_libraries/config/$version/'
| '/_libraries/form/$version/'
| '/_libraries/pacer/$version/'
| '/_libraries/query/$version/'
| '/_libraries/ranger/$version/'
| '/_libraries/router/$version/'
| '/_libraries/start/$version/'
| '/_libraries/store/$version/'
| '/_libraries/table/$version/'
| '/_libraries/virtual/$version/'
| '/$libraryId/$version/docs/framework/'
| '/$libraryId/$version/docs/framework/$framework/$'
| '/$libraryId/$version/docs/framework/$framework/'
| '/$libraryId/$version/docs/framework/$framework/examples/$'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
LibraryIdRouteRoute: typeof LibraryIdRouteRouteWithChildren
LibrariesRouteRoute: typeof LibrariesRouteRouteWithChildren
DashboardRoute: typeof DashboardRoute
LoginRoute: typeof LoginRoute
MerchRoute: typeof MerchRoute
SponsorsEmbedRoute: typeof SponsorsEmbedRoute
StatsIndexRoute: typeof StatsIndexRoute
StatsNpmIndexRoute: typeof StatsNpmIndexRoute
}
const rootRouteChildren: RootRouteChildren = {
LibraryIdRouteRoute: LibraryIdRouteRouteWithChildren,
LibrariesRouteRoute: LibrariesRouteRouteWithChildren,
DashboardRoute: DashboardRoute,
LoginRoute: LoginRoute,
MerchRoute: MerchRoute,
SponsorsEmbedRoute: SponsorsEmbedRoute,
StatsIndexRoute: StatsIndexRoute,
StatsNpmIndexRoute: StatsNpmIndexRoute,
}
export const routeTree = rootRoute
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>()
/* ROUTE_MANIFEST_START
{
"routes": {
"__root__": {
"filePath": "__root.tsx",
"children": [
"/$libraryId",
"/_libraries",
"/dashboard",
"/login",
"/merch",
"/sponsors-embed",
"/stats/",
"/stats/npm/"
]
},
"/$libraryId": {
"filePath": "$libraryId/route.tsx",
"children": [
"/$libraryId/$version",
"/$libraryId/"
]
},
"/_libraries": {
"filePath": "_libraries/route.tsx",
"children": [
"/_libraries/blog",
"/_libraries/dedicated-support",
"/_libraries/ethos",
"/_libraries/learn",
"/_libraries/privacy",
"/_libraries/support",
"/_libraries/terms",
"/_libraries/",
"/_libraries/config/$version/",
"/_libraries/form/$version/",
"/_libraries/pacer/$version/",
"/_libraries/query/$version/",
"/_libraries/ranger/$version/",
"/_libraries/router/$version/",
"/_libraries/start/$version/",
"/_libraries/store/$version/",
"/_libraries/table/$version/",
"/_libraries/virtual/$version/"
]
},
"/dashboard": {
"filePath": "dashboard.tsx"
},
"/login": {
"filePath": "login.tsx"
},
"/merch": {
"filePath": "merch.tsx"
},
"/sponsors-embed": {
"filePath": "sponsors-embed.tsx"
},
"/$libraryId/$version": {
"filePath": "$libraryId/$version.tsx",
"parent": "/$libraryId",
"children": [
"/$libraryId/$version/docs"
]
},
"/_libraries/blog": {
"filePath": "_libraries/blog.tsx",
"parent": "/_libraries",
"children": [
"/_libraries/blog/$",