-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathrouteTree.gen.ts
More file actions
1697 lines (1642 loc) · 67.5 KB
/
Copy pathrouteTree.gen.ts
File metadata and controls
1697 lines (1642 loc) · 67.5 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 { createFileRoute } from '@tanstack/react-router'
import { Route as rootRouteImport } from './routes/__root'
import { Route as Char45824Char54620Char48124Char44397RouteImport } from './routes/대한민국'
import { Route as RemountDepsRouteImport } from './routes/remountDeps'
import { Route as PostsRouteImport } from './routes/posts'
import { Route as NotRemountDepsRouteImport } from './routes/notRemountDeps'
import { Route as EditingBRouteImport } from './routes/editing-b'
import { Route as EditingARouteImport } from './routes/editing-a'
import { Route as ComponentTypesTestRouteImport } from './routes/component-types-test'
import { Route as AnchorRouteImport } from './routes/anchor'
import { Route as LayoutRouteImport } from './routes/_layout'
import { Route as SearchParamsRouteRouteImport } from './routes/search-params/route'
import { Route as NonNestedRouteRouteImport } from './routes/non-nested/route'
import { Route as IndexRouteImport } from './routes/index'
import { Route as SearchParamsIndexRouteImport } from './routes/search-params/index'
import { Route as RelativeIndexRouteImport } from './routes/relative/index'
import { Route as RedirectIndexRouteImport } from './routes/redirect/index'
import { Route as PostsIndexRouteImport } from './routes/posts.index'
import { Route as ParamsPsIndexRouteImport } from './routes/params-ps/index'
import { Route as StructuralSharingEnabledRouteImport } from './routes/structural-sharing.$enabled'
import { Route as SearchParamsDefaultRouteImport } from './routes/search-params/default'
import { Route as RedirectTargetRouteImport } from './routes/redirect/$target'
import { Route as PostsPostIdRouteImport } from './routes/posts.$postId'
import { Route as NonNestedBazRouteImport } from './routes/non-nested/baz'
import { Route as LayoutLayout2RouteImport } from './routes/_layout/_layout-2'
import { Route as groupLazyinsideRouteImport } from './routes/(group)/lazyinside'
import { Route as groupInsideRouteImport } from './routes/(group)/inside'
import { Route as groupLayoutRouteImport } from './routes/(group)/_layout'
import { Route as anotherGroupOnlyrouteinsideRouteImport } from './routes/(another-group)/onlyrouteinside'
import { Route as RelativeUseNavigateRouteRouteImport } from './routes/relative/useNavigate/route'
import { Route as RelativeLinkRouteRouteImport } from './routes/relative/link/route'
import { Route as ParamsPsNonNestedRouteRouteImport } from './routes/params-ps/non-nested/route'
import { Route as RedirectTargetIndexRouteImport } from './routes/redirect/$target/index'
import { Route as ParamsPsWildcardIndexRouteImport } from './routes/params-ps/wildcard/index'
import { Route as ParamsPsNamedIndexRouteImport } from './routes/params-ps/named/index'
import { Route as RelativeUseNavigateRelativeUseNavigateBRouteImport } from './routes/relative/useNavigate/relative-useNavigate-b'
import { Route as RelativeUseNavigateRelativeUseNavigateARouteImport } from './routes/relative/useNavigate/relative-useNavigate-a'
import { Route as RelativeLinkRelativeLinkBRouteImport } from './routes/relative/link/relative-link-b'
import { Route as RelativeLinkRelativeLinkARouteImport } from './routes/relative/link/relative-link-a'
import { Route as RedirectPreloadThirdRouteImport } from './routes/redirect/preload/third'
import { Route as RedirectPreloadSecondRouteImport } from './routes/redirect/preload/second'
import { Route as RedirectPreloadFirstRouteImport } from './routes/redirect/preload/first'
import { Route as RedirectTargetViaLoaderRouteImport } from './routes/redirect/$target/via-loader'
import { Route as RedirectTargetViaBeforeLoadRouteImport } from './routes/redirect/$target/via-beforeLoad'
import { Route as PostsPostIdEditRouteImport } from './routes/posts_.$postId.edit'
import { Route as ParamsSingleValueRouteImport } from './routes/params.single.$value'
import { Route as ParamsPsWildcardChar123Char125suffixRouteImport } from './routes/params-ps/wildcard/{$}suffix'
import { Route as ParamsPsWildcardPrefixChar123Char125RouteImport } from './routes/params-ps/wildcard/prefix{$}'
import { Route as ParamsPsWildcardSplatRouteImport } from './routes/params-ps/wildcard/$'
import { Route as ParamsPsNamedChar123fooChar125suffixRouteImport } from './routes/params-ps/named/{$foo}suffix'
import { Route as ParamsPsNamedPrefixChar123fooChar125RouteImport } from './routes/params-ps/named/prefix{$foo}'
import { Route as NonNestedBazBazidRouteImport } from './routes/non-nested/baz.$bazid'
import { Route as LayoutLayout2LayoutBRouteImport } from './routes/_layout/_layout-2/layout-b'
import { Route as LayoutLayout2LayoutARouteImport } from './routes/_layout/_layout-2/layout-a'
import { Route as groupSubfolderInsideRouteImport } from './routes/(group)/subfolder/inside'
import { Route as groupLayoutInsidelayoutRouteImport } from './routes/(group)/_layout.insidelayout'
import { Route as ParamsPsNonNestedFooRouteRouteImport } from './routes/params-ps/non-nested/$foo_/route'
import { Route as ParamsPsNamedFooRouteRouteImport } from './routes/params-ps/named/$foo/route'
import { Route as RelativeUseNavigateWithSearchIndexRouteImport } from './routes/relative/useNavigate/with-search/index'
import { Route as RelativeUseNavigatePathIndexRouteImport } from './routes/relative/useNavigate/path/index'
import { Route as RelativeUseNavigateNestedIndexRouteImport } from './routes/relative/useNavigate/nested/index'
import { Route as RelativeLinkWithSearchIndexRouteImport } from './routes/relative/link/with-search/index'
import { Route as RelativeLinkPathIndexRouteImport } from './routes/relative/link/path/index'
import { Route as RelativeLinkNestedIndexRouteImport } from './routes/relative/link/nested/index'
import { Route as ParamsPsNonNestedFooBarRouteImport } from './routes/params-ps/non-nested/$foo_/$bar'
import { Route as NonNestedBazBazidEditRouteImport } from './routes/non-nested/baz_.$bazid.edit'
import { Route as ParamsPsNamedFooBarRouteRouteImport } from './routes/params-ps/named/$foo/$bar.route'
import { Route as RelativeUseNavigatePathPathIndexRouteImport } from './routes/relative/useNavigate/path/$path/index'
import { Route as RelativeUseNavigateNestedDeepIndexRouteImport } from './routes/relative/useNavigate/nested/deep/index'
import { Route as RelativeLinkPathPathIndexRouteImport } from './routes/relative/link/path/$path/index'
import { Route as RelativeLinkNestedDeepIndexRouteImport } from './routes/relative/link/nested/deep/index'
import { Route as ParamsPsNamedFooBarBazRouteImport } from './routes/params-ps/named/$foo/$bar.$baz'
const groupRouteImport = createFileRoute('/(group)')()
const groupRoute = groupRouteImport.update({
id: '/(group)',
getParentRoute: () => rootRouteImport,
} as any)
const Char45824Char54620Char48124Char44397Route =
Char45824Char54620Char48124Char44397RouteImport.update({
id: '/대한민국',
path: '/대한민국',
getParentRoute: () => rootRouteImport,
} as any)
const RemountDepsRoute = RemountDepsRouteImport.update({
id: '/remountDeps',
path: '/remountDeps',
getParentRoute: () => rootRouteImport,
} as any)
const PostsRoute = PostsRouteImport.update({
id: '/posts',
path: '/posts',
getParentRoute: () => rootRouteImport,
} as any)
const NotRemountDepsRoute = NotRemountDepsRouteImport.update({
id: '/notRemountDeps',
path: '/notRemountDeps',
getParentRoute: () => rootRouteImport,
} as any)
const EditingBRoute = EditingBRouteImport.update({
id: '/editing-b',
path: '/editing-b',
getParentRoute: () => rootRouteImport,
} as any)
const EditingARoute = EditingARouteImport.update({
id: '/editing-a',
path: '/editing-a',
getParentRoute: () => rootRouteImport,
} as any)
const ComponentTypesTestRoute = ComponentTypesTestRouteImport.update({
id: '/component-types-test',
path: '/component-types-test',
getParentRoute: () => rootRouteImport,
} as any)
const AnchorRoute = AnchorRouteImport.update({
id: '/anchor',
path: '/anchor',
getParentRoute: () => rootRouteImport,
} as any)
const LayoutRoute = LayoutRouteImport.update({
id: '/_layout',
getParentRoute: () => rootRouteImport,
} as any)
const SearchParamsRouteRoute = SearchParamsRouteRouteImport.update({
id: '/search-params',
path: '/search-params',
getParentRoute: () => rootRouteImport,
} as any)
const NonNestedRouteRoute = NonNestedRouteRouteImport.update({
id: '/non-nested',
path: '/non-nested',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
const SearchParamsIndexRoute = SearchParamsIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => SearchParamsRouteRoute,
} as any)
const RelativeIndexRoute = RelativeIndexRouteImport.update({
id: '/relative/',
path: '/relative/',
getParentRoute: () => rootRouteImport,
} as any)
const RedirectIndexRoute = RedirectIndexRouteImport.update({
id: '/redirect/',
path: '/redirect/',
getParentRoute: () => rootRouteImport,
} as any)
const PostsIndexRoute = PostsIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => PostsRoute,
} as any)
const ParamsPsIndexRoute = ParamsPsIndexRouteImport.update({
id: '/params-ps/',
path: '/params-ps/',
getParentRoute: () => rootRouteImport,
} as any)
const StructuralSharingEnabledRoute =
StructuralSharingEnabledRouteImport.update({
id: '/structural-sharing/$enabled',
path: '/structural-sharing/$enabled',
getParentRoute: () => rootRouteImport,
} as any)
const SearchParamsDefaultRoute = SearchParamsDefaultRouteImport.update({
id: '/default',
path: '/default',
getParentRoute: () => SearchParamsRouteRoute,
} as any)
const RedirectTargetRoute = RedirectTargetRouteImport.update({
id: '/redirect/$target',
path: '/redirect/$target',
getParentRoute: () => rootRouteImport,
} as any)
const PostsPostIdRoute = PostsPostIdRouteImport.update({
id: '/$postId',
path: '/$postId',
getParentRoute: () => PostsRoute,
} as any)
const NonNestedBazRoute = NonNestedBazRouteImport.update({
id: '/baz',
path: '/baz',
getParentRoute: () => NonNestedRouteRoute,
} as any)
const LayoutLayout2Route = LayoutLayout2RouteImport.update({
id: '/_layout-2',
getParentRoute: () => LayoutRoute,
} as any)
const groupLazyinsideRoute = groupLazyinsideRouteImport
.update({
id: '/lazyinside',
path: '/lazyinside',
getParentRoute: () => groupRoute,
} as any)
.lazy(() => import('./routes/(group)/lazyinside.lazy').then((d) => d.Route))
const groupInsideRoute = groupInsideRouteImport.update({
id: '/inside',
path: '/inside',
getParentRoute: () => groupRoute,
} as any)
const groupLayoutRoute = groupLayoutRouteImport.update({
id: '/_layout',
getParentRoute: () => groupRoute,
} as any)
const anotherGroupOnlyrouteinsideRoute =
anotherGroupOnlyrouteinsideRouteImport.update({
id: '/(another-group)/onlyrouteinside',
path: '/onlyrouteinside',
getParentRoute: () => rootRouteImport,
} as any)
const RelativeUseNavigateRouteRoute =
RelativeUseNavigateRouteRouteImport.update({
id: '/relative/useNavigate',
path: '/relative/useNavigate',
getParentRoute: () => rootRouteImport,
} as any)
const RelativeLinkRouteRoute = RelativeLinkRouteRouteImport.update({
id: '/relative/link',
path: '/relative/link',
getParentRoute: () => rootRouteImport,
} as any)
const ParamsPsNonNestedRouteRoute = ParamsPsNonNestedRouteRouteImport.update({
id: '/params-ps/non-nested',
path: '/params-ps/non-nested',
getParentRoute: () => rootRouteImport,
} as any)
const RedirectTargetIndexRoute = RedirectTargetIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => RedirectTargetRoute,
} as any)
const ParamsPsWildcardIndexRoute = ParamsPsWildcardIndexRouteImport.update({
id: '/params-ps/wildcard/',
path: '/params-ps/wildcard/',
getParentRoute: () => rootRouteImport,
} as any)
const ParamsPsNamedIndexRoute = ParamsPsNamedIndexRouteImport.update({
id: '/params-ps/named/',
path: '/params-ps/named/',
getParentRoute: () => rootRouteImport,
} as any)
const RelativeUseNavigateRelativeUseNavigateBRoute =
RelativeUseNavigateRelativeUseNavigateBRouteImport.update({
id: '/relative-useNavigate-b',
path: '/relative-useNavigate-b',
getParentRoute: () => RelativeUseNavigateRouteRoute,
} as any)
const RelativeUseNavigateRelativeUseNavigateARoute =
RelativeUseNavigateRelativeUseNavigateARouteImport.update({
id: '/relative-useNavigate-a',
path: '/relative-useNavigate-a',
getParentRoute: () => RelativeUseNavigateRouteRoute,
} as any)
const RelativeLinkRelativeLinkBRoute =
RelativeLinkRelativeLinkBRouteImport.update({
id: '/relative-link-b',
path: '/relative-link-b',
getParentRoute: () => RelativeLinkRouteRoute,
} as any)
const RelativeLinkRelativeLinkARoute =
RelativeLinkRelativeLinkARouteImport.update({
id: '/relative-link-a',
path: '/relative-link-a',
getParentRoute: () => RelativeLinkRouteRoute,
} as any)
const RedirectPreloadThirdRoute = RedirectPreloadThirdRouteImport.update({
id: '/redirect/preload/third',
path: '/redirect/preload/third',
getParentRoute: () => rootRouteImport,
} as any)
const RedirectPreloadSecondRoute = RedirectPreloadSecondRouteImport.update({
id: '/redirect/preload/second',
path: '/redirect/preload/second',
getParentRoute: () => rootRouteImport,
} as any)
const RedirectPreloadFirstRoute = RedirectPreloadFirstRouteImport.update({
id: '/redirect/preload/first',
path: '/redirect/preload/first',
getParentRoute: () => rootRouteImport,
} as any)
const RedirectTargetViaLoaderRoute = RedirectTargetViaLoaderRouteImport.update({
id: '/via-loader',
path: '/via-loader',
getParentRoute: () => RedirectTargetRoute,
} as any)
const RedirectTargetViaBeforeLoadRoute =
RedirectTargetViaBeforeLoadRouteImport.update({
id: '/via-beforeLoad',
path: '/via-beforeLoad',
getParentRoute: () => RedirectTargetRoute,
} as any)
const PostsPostIdEditRoute = PostsPostIdEditRouteImport.update({
id: '/posts_/$postId/edit',
path: '/posts/$postId/edit',
getParentRoute: () => rootRouteImport,
} as any)
const ParamsSingleValueRoute = ParamsSingleValueRouteImport.update({
id: '/params/single/$value',
path: '/params/single/$value',
getParentRoute: () => rootRouteImport,
} as any)
const ParamsPsWildcardChar123Char125suffixRoute =
ParamsPsWildcardChar123Char125suffixRouteImport.update({
id: '/params-ps/wildcard/{$}suffix',
path: '/params-ps/wildcard/{$}suffix',
getParentRoute: () => rootRouteImport,
} as any)
const ParamsPsWildcardPrefixChar123Char125Route =
ParamsPsWildcardPrefixChar123Char125RouteImport.update({
id: '/params-ps/wildcard/prefix{$}',
path: '/params-ps/wildcard/prefix{$}',
getParentRoute: () => rootRouteImport,
} as any)
const ParamsPsWildcardSplatRoute = ParamsPsWildcardSplatRouteImport.update({
id: '/params-ps/wildcard/$',
path: '/params-ps/wildcard/$',
getParentRoute: () => rootRouteImport,
} as any)
const ParamsPsNamedChar123fooChar125suffixRoute =
ParamsPsNamedChar123fooChar125suffixRouteImport.update({
id: '/params-ps/named/{$foo}suffix',
path: '/params-ps/named/{$foo}suffix',
getParentRoute: () => rootRouteImport,
} as any)
const ParamsPsNamedPrefixChar123fooChar125Route =
ParamsPsNamedPrefixChar123fooChar125RouteImport.update({
id: '/params-ps/named/prefix{$foo}',
path: '/params-ps/named/prefix{$foo}',
getParentRoute: () => rootRouteImport,
} as any)
const NonNestedBazBazidRoute = NonNestedBazBazidRouteImport.update({
id: '/$bazid',
path: '/$bazid',
getParentRoute: () => NonNestedBazRoute,
} as any)
const LayoutLayout2LayoutBRoute = LayoutLayout2LayoutBRouteImport.update({
id: '/layout-b',
path: '/layout-b',
getParentRoute: () => LayoutLayout2Route,
} as any)
const LayoutLayout2LayoutARoute = LayoutLayout2LayoutARouteImport.update({
id: '/layout-a',
path: '/layout-a',
getParentRoute: () => LayoutLayout2Route,
} as any)
const groupSubfolderInsideRoute = groupSubfolderInsideRouteImport.update({
id: '/subfolder/inside',
path: '/subfolder/inside',
getParentRoute: () => groupRoute,
} as any)
const groupLayoutInsidelayoutRoute = groupLayoutInsidelayoutRouteImport.update({
id: '/insidelayout',
path: '/insidelayout',
getParentRoute: () => groupLayoutRoute,
} as any)
const ParamsPsNonNestedFooRouteRoute =
ParamsPsNonNestedFooRouteRouteImport.update({
id: '/$foo_',
path: '/$foo',
getParentRoute: () => ParamsPsNonNestedRouteRoute,
} as any)
const ParamsPsNamedFooRouteRoute = ParamsPsNamedFooRouteRouteImport.update({
id: '/params-ps/named/$foo',
path: '/params-ps/named/$foo',
getParentRoute: () => rootRouteImport,
} as any)
const RelativeUseNavigateWithSearchIndexRoute =
RelativeUseNavigateWithSearchIndexRouteImport.update({
id: '/with-search/',
path: '/with-search/',
getParentRoute: () => RelativeUseNavigateRouteRoute,
} as any)
const RelativeUseNavigatePathIndexRoute =
RelativeUseNavigatePathIndexRouteImport.update({
id: '/path/',
path: '/path/',
getParentRoute: () => RelativeUseNavigateRouteRoute,
} as any)
const RelativeUseNavigateNestedIndexRoute =
RelativeUseNavigateNestedIndexRouteImport.update({
id: '/nested/',
path: '/nested/',
getParentRoute: () => RelativeUseNavigateRouteRoute,
} as any)
const RelativeLinkWithSearchIndexRoute =
RelativeLinkWithSearchIndexRouteImport.update({
id: '/with-search/',
path: '/with-search/',
getParentRoute: () => RelativeLinkRouteRoute,
} as any)
const RelativeLinkPathIndexRoute = RelativeLinkPathIndexRouteImport.update({
id: '/path/',
path: '/path/',
getParentRoute: () => RelativeLinkRouteRoute,
} as any)
const RelativeLinkNestedIndexRoute = RelativeLinkNestedIndexRouteImport.update({
id: '/nested/',
path: '/nested/',
getParentRoute: () => RelativeLinkRouteRoute,
} as any)
const ParamsPsNonNestedFooBarRoute = ParamsPsNonNestedFooBarRouteImport.update({
id: '/$bar',
path: '/$bar',
getParentRoute: () => ParamsPsNonNestedFooRouteRoute,
} as any)
const NonNestedBazBazidEditRoute = NonNestedBazBazidEditRouteImport.update({
id: '/baz_/$bazid/edit',
path: '/baz/$bazid/edit',
getParentRoute: () => NonNestedRouteRoute,
} as any)
const ParamsPsNamedFooBarRouteRoute =
ParamsPsNamedFooBarRouteRouteImport.update({
id: '/$bar',
path: '/$bar',
getParentRoute: () => ParamsPsNamedFooRouteRoute,
} as any)
const RelativeUseNavigatePathPathIndexRoute =
RelativeUseNavigatePathPathIndexRouteImport.update({
id: '/path/$path/',
path: '/path/$path/',
getParentRoute: () => RelativeUseNavigateRouteRoute,
} as any)
const RelativeUseNavigateNestedDeepIndexRoute =
RelativeUseNavigateNestedDeepIndexRouteImport.update({
id: '/nested/deep/',
path: '/nested/deep/',
getParentRoute: () => RelativeUseNavigateRouteRoute,
} as any)
const RelativeLinkPathPathIndexRoute =
RelativeLinkPathPathIndexRouteImport.update({
id: '/path/$path/',
path: '/path/$path/',
getParentRoute: () => RelativeLinkRouteRoute,
} as any)
const RelativeLinkNestedDeepIndexRoute =
RelativeLinkNestedDeepIndexRouteImport.update({
id: '/nested/deep/',
path: '/nested/deep/',
getParentRoute: () => RelativeLinkRouteRoute,
} as any)
const ParamsPsNamedFooBarBazRoute = ParamsPsNamedFooBarBazRouteImport.update({
id: '/$baz',
path: '/$baz',
getParentRoute: () => ParamsPsNamedFooBarRouteRoute,
} as any)
export interface FileRoutesByFullPath {
'/': typeof groupLayoutRouteWithChildren
'/non-nested': typeof NonNestedRouteRouteWithChildren
'/search-params': typeof SearchParamsRouteRouteWithChildren
'/anchor': typeof AnchorRoute
'/component-types-test': typeof ComponentTypesTestRoute
'/editing-a': typeof EditingARoute
'/editing-b': typeof EditingBRoute
'/notRemountDeps': typeof NotRemountDepsRoute
'/posts': typeof PostsRouteWithChildren
'/remountDeps': typeof RemountDepsRoute
'/대한민국': typeof Char45824Char54620Char48124Char44397Route
'/params-ps/non-nested': typeof ParamsPsNonNestedRouteRouteWithChildren
'/relative/link': typeof RelativeLinkRouteRouteWithChildren
'/relative/useNavigate': typeof RelativeUseNavigateRouteRouteWithChildren
'/onlyrouteinside': typeof anotherGroupOnlyrouteinsideRoute
'/inside': typeof groupInsideRoute
'/lazyinside': typeof groupLazyinsideRoute
'/non-nested/baz': typeof NonNestedBazRouteWithChildren
'/posts/$postId': typeof PostsPostIdRoute
'/redirect/$target': typeof RedirectTargetRouteWithChildren
'/search-params/default': typeof SearchParamsDefaultRoute
'/structural-sharing/$enabled': typeof StructuralSharingEnabledRoute
'/params-ps': typeof ParamsPsIndexRoute
'/posts/': typeof PostsIndexRoute
'/redirect': typeof RedirectIndexRoute
'/relative': typeof RelativeIndexRoute
'/search-params/': typeof SearchParamsIndexRoute
'/params-ps/named/$foo': typeof ParamsPsNamedFooRouteRouteWithChildren
'/params-ps/non-nested/$foo': typeof ParamsPsNonNestedFooRouteRouteWithChildren
'/insidelayout': typeof groupLayoutInsidelayoutRoute
'/subfolder/inside': typeof groupSubfolderInsideRoute
'/layout-a': typeof LayoutLayout2LayoutARoute
'/layout-b': typeof LayoutLayout2LayoutBRoute
'/non-nested/baz/$bazid': typeof NonNestedBazBazidRoute
'/params-ps/named/prefix{$foo}': typeof ParamsPsNamedPrefixChar123fooChar125Route
'/params-ps/named/{$foo}suffix': typeof ParamsPsNamedChar123fooChar125suffixRoute
'/params-ps/wildcard/$': typeof ParamsPsWildcardSplatRoute
'/params-ps/wildcard/prefix{$}': typeof ParamsPsWildcardPrefixChar123Char125Route
'/params-ps/wildcard/{$}suffix': typeof ParamsPsWildcardChar123Char125suffixRoute
'/params/single/$value': typeof ParamsSingleValueRoute
'/posts/$postId/edit': typeof PostsPostIdEditRoute
'/redirect/$target/via-beforeLoad': typeof RedirectTargetViaBeforeLoadRoute
'/redirect/$target/via-loader': typeof RedirectTargetViaLoaderRoute
'/redirect/preload/first': typeof RedirectPreloadFirstRoute
'/redirect/preload/second': typeof RedirectPreloadSecondRoute
'/redirect/preload/third': typeof RedirectPreloadThirdRoute
'/relative/link/relative-link-a': typeof RelativeLinkRelativeLinkARoute
'/relative/link/relative-link-b': typeof RelativeLinkRelativeLinkBRoute
'/relative/useNavigate/relative-useNavigate-a': typeof RelativeUseNavigateRelativeUseNavigateARoute
'/relative/useNavigate/relative-useNavigate-b': typeof RelativeUseNavigateRelativeUseNavigateBRoute
'/params-ps/named': typeof ParamsPsNamedIndexRoute
'/params-ps/wildcard': typeof ParamsPsWildcardIndexRoute
'/redirect/$target/': typeof RedirectTargetIndexRoute
'/params-ps/named/$foo/$bar': typeof ParamsPsNamedFooBarRouteRouteWithChildren
'/non-nested/baz/$bazid/edit': typeof NonNestedBazBazidEditRoute
'/params-ps/non-nested/$foo/$bar': typeof ParamsPsNonNestedFooBarRoute
'/relative/link/nested': typeof RelativeLinkNestedIndexRoute
'/relative/link/path': typeof RelativeLinkPathIndexRoute
'/relative/link/with-search': typeof RelativeLinkWithSearchIndexRoute
'/relative/useNavigate/nested': typeof RelativeUseNavigateNestedIndexRoute
'/relative/useNavigate/path': typeof RelativeUseNavigatePathIndexRoute
'/relative/useNavigate/with-search': typeof RelativeUseNavigateWithSearchIndexRoute
'/params-ps/named/$foo/$bar/$baz': typeof ParamsPsNamedFooBarBazRoute
'/relative/link/nested/deep': typeof RelativeLinkNestedDeepIndexRoute
'/relative/link/path/$path': typeof RelativeLinkPathPathIndexRoute
'/relative/useNavigate/nested/deep': typeof RelativeUseNavigateNestedDeepIndexRoute
'/relative/useNavigate/path/$path': typeof RelativeUseNavigatePathPathIndexRoute
}
export interface FileRoutesByTo {
'/': typeof groupLayoutRouteWithChildren
'/non-nested': typeof NonNestedRouteRouteWithChildren
'/anchor': typeof AnchorRoute
'/component-types-test': typeof ComponentTypesTestRoute
'/editing-a': typeof EditingARoute
'/editing-b': typeof EditingBRoute
'/notRemountDeps': typeof NotRemountDepsRoute
'/remountDeps': typeof RemountDepsRoute
'/대한민국': typeof Char45824Char54620Char48124Char44397Route
'/params-ps/non-nested': typeof ParamsPsNonNestedRouteRouteWithChildren
'/relative/link': typeof RelativeLinkRouteRouteWithChildren
'/relative/useNavigate': typeof RelativeUseNavigateRouteRouteWithChildren
'/onlyrouteinside': typeof anotherGroupOnlyrouteinsideRoute
'/inside': typeof groupInsideRoute
'/lazyinside': typeof groupLazyinsideRoute
'/non-nested/baz': typeof NonNestedBazRouteWithChildren
'/posts/$postId': typeof PostsPostIdRoute
'/search-params/default': typeof SearchParamsDefaultRoute
'/structural-sharing/$enabled': typeof StructuralSharingEnabledRoute
'/params-ps': typeof ParamsPsIndexRoute
'/posts': typeof PostsIndexRoute
'/redirect': typeof RedirectIndexRoute
'/relative': typeof RelativeIndexRoute
'/search-params': typeof SearchParamsIndexRoute
'/params-ps/named/$foo': typeof ParamsPsNamedFooRouteRouteWithChildren
'/params-ps/non-nested/$foo': typeof ParamsPsNonNestedFooRouteRouteWithChildren
'/insidelayout': typeof groupLayoutInsidelayoutRoute
'/subfolder/inside': typeof groupSubfolderInsideRoute
'/layout-a': typeof LayoutLayout2LayoutARoute
'/layout-b': typeof LayoutLayout2LayoutBRoute
'/non-nested/baz/$bazid': typeof NonNestedBazBazidRoute
'/params-ps/named/prefix{$foo}': typeof ParamsPsNamedPrefixChar123fooChar125Route
'/params-ps/named/{$foo}suffix': typeof ParamsPsNamedChar123fooChar125suffixRoute
'/params-ps/wildcard/$': typeof ParamsPsWildcardSplatRoute
'/params-ps/wildcard/prefix{$}': typeof ParamsPsWildcardPrefixChar123Char125Route
'/params-ps/wildcard/{$}suffix': typeof ParamsPsWildcardChar123Char125suffixRoute
'/params/single/$value': typeof ParamsSingleValueRoute
'/posts/$postId/edit': typeof PostsPostIdEditRoute
'/redirect/$target/via-beforeLoad': typeof RedirectTargetViaBeforeLoadRoute
'/redirect/$target/via-loader': typeof RedirectTargetViaLoaderRoute
'/redirect/preload/first': typeof RedirectPreloadFirstRoute
'/redirect/preload/second': typeof RedirectPreloadSecondRoute
'/redirect/preload/third': typeof RedirectPreloadThirdRoute
'/relative/link/relative-link-a': typeof RelativeLinkRelativeLinkARoute
'/relative/link/relative-link-b': typeof RelativeLinkRelativeLinkBRoute
'/relative/useNavigate/relative-useNavigate-a': typeof RelativeUseNavigateRelativeUseNavigateARoute
'/relative/useNavigate/relative-useNavigate-b': typeof RelativeUseNavigateRelativeUseNavigateBRoute
'/params-ps/named': typeof ParamsPsNamedIndexRoute
'/params-ps/wildcard': typeof ParamsPsWildcardIndexRoute
'/redirect/$target': typeof RedirectTargetIndexRoute
'/params-ps/named/$foo/$bar': typeof ParamsPsNamedFooBarRouteRouteWithChildren
'/non-nested/baz/$bazid/edit': typeof NonNestedBazBazidEditRoute
'/params-ps/non-nested/$foo/$bar': typeof ParamsPsNonNestedFooBarRoute
'/relative/link/nested': typeof RelativeLinkNestedIndexRoute
'/relative/link/path': typeof RelativeLinkPathIndexRoute
'/relative/link/with-search': typeof RelativeLinkWithSearchIndexRoute
'/relative/useNavigate/nested': typeof RelativeUseNavigateNestedIndexRoute
'/relative/useNavigate/path': typeof RelativeUseNavigatePathIndexRoute
'/relative/useNavigate/with-search': typeof RelativeUseNavigateWithSearchIndexRoute
'/params-ps/named/$foo/$bar/$baz': typeof ParamsPsNamedFooBarBazRoute
'/relative/link/nested/deep': typeof RelativeLinkNestedDeepIndexRoute
'/relative/link/path/$path': typeof RelativeLinkPathPathIndexRoute
'/relative/useNavigate/nested/deep': typeof RelativeUseNavigateNestedDeepIndexRoute
'/relative/useNavigate/path/$path': typeof RelativeUseNavigatePathPathIndexRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/non-nested': typeof NonNestedRouteRouteWithChildren
'/search-params': typeof SearchParamsRouteRouteWithChildren
'/_layout': typeof LayoutRouteWithChildren
'/anchor': typeof AnchorRoute
'/component-types-test': typeof ComponentTypesTestRoute
'/editing-a': typeof EditingARoute
'/editing-b': typeof EditingBRoute
'/notRemountDeps': typeof NotRemountDepsRoute
'/posts': typeof PostsRouteWithChildren
'/remountDeps': typeof RemountDepsRoute
'/대한민국': typeof Char45824Char54620Char48124Char44397Route
'/params-ps/non-nested': typeof ParamsPsNonNestedRouteRouteWithChildren
'/relative/link': typeof RelativeLinkRouteRouteWithChildren
'/relative/useNavigate': typeof RelativeUseNavigateRouteRouteWithChildren
'/(another-group)/onlyrouteinside': typeof anotherGroupOnlyrouteinsideRoute
'/(group)': typeof groupRouteWithChildren
'/(group)/_layout': typeof groupLayoutRouteWithChildren
'/(group)/inside': typeof groupInsideRoute
'/(group)/lazyinside': typeof groupLazyinsideRoute
'/_layout/_layout-2': typeof LayoutLayout2RouteWithChildren
'/non-nested/baz': typeof NonNestedBazRouteWithChildren
'/posts/$postId': typeof PostsPostIdRoute
'/redirect/$target': typeof RedirectTargetRouteWithChildren
'/search-params/default': typeof SearchParamsDefaultRoute
'/structural-sharing/$enabled': typeof StructuralSharingEnabledRoute
'/params-ps/': typeof ParamsPsIndexRoute
'/posts/': typeof PostsIndexRoute
'/redirect/': typeof RedirectIndexRoute
'/relative/': typeof RelativeIndexRoute
'/search-params/': typeof SearchParamsIndexRoute
'/params-ps/named/$foo': typeof ParamsPsNamedFooRouteRouteWithChildren
'/params-ps/non-nested/$foo_': typeof ParamsPsNonNestedFooRouteRouteWithChildren
'/(group)/_layout/insidelayout': typeof groupLayoutInsidelayoutRoute
'/(group)/subfolder/inside': typeof groupSubfolderInsideRoute
'/_layout/_layout-2/layout-a': typeof LayoutLayout2LayoutARoute
'/_layout/_layout-2/layout-b': typeof LayoutLayout2LayoutBRoute
'/non-nested/baz/$bazid': typeof NonNestedBazBazidRoute
'/params-ps/named/prefix{$foo}': typeof ParamsPsNamedPrefixChar123fooChar125Route
'/params-ps/named/{$foo}suffix': typeof ParamsPsNamedChar123fooChar125suffixRoute
'/params-ps/wildcard/$': typeof ParamsPsWildcardSplatRoute
'/params-ps/wildcard/prefix{$}': typeof ParamsPsWildcardPrefixChar123Char125Route
'/params-ps/wildcard/{$}suffix': typeof ParamsPsWildcardChar123Char125suffixRoute
'/params/single/$value': typeof ParamsSingleValueRoute
'/posts_/$postId/edit': typeof PostsPostIdEditRoute
'/redirect/$target/via-beforeLoad': typeof RedirectTargetViaBeforeLoadRoute
'/redirect/$target/via-loader': typeof RedirectTargetViaLoaderRoute
'/redirect/preload/first': typeof RedirectPreloadFirstRoute
'/redirect/preload/second': typeof RedirectPreloadSecondRoute
'/redirect/preload/third': typeof RedirectPreloadThirdRoute
'/relative/link/relative-link-a': typeof RelativeLinkRelativeLinkARoute
'/relative/link/relative-link-b': typeof RelativeLinkRelativeLinkBRoute
'/relative/useNavigate/relative-useNavigate-a': typeof RelativeUseNavigateRelativeUseNavigateARoute
'/relative/useNavigate/relative-useNavigate-b': typeof RelativeUseNavigateRelativeUseNavigateBRoute
'/params-ps/named/': typeof ParamsPsNamedIndexRoute
'/params-ps/wildcard/': typeof ParamsPsWildcardIndexRoute
'/redirect/$target/': typeof RedirectTargetIndexRoute
'/params-ps/named/$foo/$bar': typeof ParamsPsNamedFooBarRouteRouteWithChildren
'/non-nested/baz_/$bazid/edit': typeof NonNestedBazBazidEditRoute
'/params-ps/non-nested/$foo_/$bar': typeof ParamsPsNonNestedFooBarRoute
'/relative/link/nested/': typeof RelativeLinkNestedIndexRoute
'/relative/link/path/': typeof RelativeLinkPathIndexRoute
'/relative/link/with-search/': typeof RelativeLinkWithSearchIndexRoute
'/relative/useNavigate/nested/': typeof RelativeUseNavigateNestedIndexRoute
'/relative/useNavigate/path/': typeof RelativeUseNavigatePathIndexRoute
'/relative/useNavigate/with-search/': typeof RelativeUseNavigateWithSearchIndexRoute
'/params-ps/named/$foo/$bar/$baz': typeof ParamsPsNamedFooBarBazRoute
'/relative/link/nested/deep/': typeof RelativeLinkNestedDeepIndexRoute
'/relative/link/path/$path/': typeof RelativeLinkPathPathIndexRoute
'/relative/useNavigate/nested/deep/': typeof RelativeUseNavigateNestedDeepIndexRoute
'/relative/useNavigate/path/$path/': typeof RelativeUseNavigatePathPathIndexRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/'
| '/non-nested'
| '/search-params'
| '/anchor'
| '/component-types-test'
| '/editing-a'
| '/editing-b'
| '/notRemountDeps'
| '/posts'
| '/remountDeps'
| '/대한민국'
| '/params-ps/non-nested'
| '/relative/link'
| '/relative/useNavigate'
| '/onlyrouteinside'
| '/inside'
| '/lazyinside'
| '/non-nested/baz'
| '/posts/$postId'
| '/redirect/$target'
| '/search-params/default'
| '/structural-sharing/$enabled'
| '/params-ps'
| '/posts/'
| '/redirect'
| '/relative'
| '/search-params/'
| '/params-ps/named/$foo'
| '/params-ps/non-nested/$foo'
| '/insidelayout'
| '/subfolder/inside'
| '/layout-a'
| '/layout-b'
| '/non-nested/baz/$bazid'
| '/params-ps/named/prefix{$foo}'
| '/params-ps/named/{$foo}suffix'
| '/params-ps/wildcard/$'
| '/params-ps/wildcard/prefix{$}'
| '/params-ps/wildcard/{$}suffix'
| '/params/single/$value'
| '/posts/$postId/edit'
| '/redirect/$target/via-beforeLoad'
| '/redirect/$target/via-loader'
| '/redirect/preload/first'
| '/redirect/preload/second'
| '/redirect/preload/third'
| '/relative/link/relative-link-a'
| '/relative/link/relative-link-b'
| '/relative/useNavigate/relative-useNavigate-a'
| '/relative/useNavigate/relative-useNavigate-b'
| '/params-ps/named'
| '/params-ps/wildcard'
| '/redirect/$target/'
| '/params-ps/named/$foo/$bar'
| '/non-nested/baz/$bazid/edit'
| '/params-ps/non-nested/$foo/$bar'
| '/relative/link/nested'
| '/relative/link/path'
| '/relative/link/with-search'
| '/relative/useNavigate/nested'
| '/relative/useNavigate/path'
| '/relative/useNavigate/with-search'
| '/params-ps/named/$foo/$bar/$baz'
| '/relative/link/nested/deep'
| '/relative/link/path/$path'
| '/relative/useNavigate/nested/deep'
| '/relative/useNavigate/path/$path'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
| '/non-nested'
| '/anchor'
| '/component-types-test'
| '/editing-a'
| '/editing-b'
| '/notRemountDeps'
| '/remountDeps'
| '/대한민국'
| '/params-ps/non-nested'
| '/relative/link'
| '/relative/useNavigate'
| '/onlyrouteinside'
| '/inside'
| '/lazyinside'
| '/non-nested/baz'
| '/posts/$postId'
| '/search-params/default'
| '/structural-sharing/$enabled'
| '/params-ps'
| '/posts'
| '/redirect'
| '/relative'
| '/search-params'
| '/params-ps/named/$foo'
| '/params-ps/non-nested/$foo'
| '/insidelayout'
| '/subfolder/inside'
| '/layout-a'
| '/layout-b'
| '/non-nested/baz/$bazid'
| '/params-ps/named/prefix{$foo}'
| '/params-ps/named/{$foo}suffix'
| '/params-ps/wildcard/$'
| '/params-ps/wildcard/prefix{$}'
| '/params-ps/wildcard/{$}suffix'
| '/params/single/$value'
| '/posts/$postId/edit'
| '/redirect/$target/via-beforeLoad'
| '/redirect/$target/via-loader'
| '/redirect/preload/first'
| '/redirect/preload/second'
| '/redirect/preload/third'
| '/relative/link/relative-link-a'
| '/relative/link/relative-link-b'
| '/relative/useNavigate/relative-useNavigate-a'
| '/relative/useNavigate/relative-useNavigate-b'
| '/params-ps/named'
| '/params-ps/wildcard'
| '/redirect/$target'
| '/params-ps/named/$foo/$bar'
| '/non-nested/baz/$bazid/edit'
| '/params-ps/non-nested/$foo/$bar'
| '/relative/link/nested'
| '/relative/link/path'
| '/relative/link/with-search'
| '/relative/useNavigate/nested'
| '/relative/useNavigate/path'
| '/relative/useNavigate/with-search'
| '/params-ps/named/$foo/$bar/$baz'
| '/relative/link/nested/deep'
| '/relative/link/path/$path'
| '/relative/useNavigate/nested/deep'
| '/relative/useNavigate/path/$path'
id:
| '__root__'
| '/'
| '/non-nested'
| '/search-params'
| '/_layout'
| '/anchor'
| '/component-types-test'
| '/editing-a'
| '/editing-b'
| '/notRemountDeps'
| '/posts'
| '/remountDeps'
| '/대한민국'
| '/params-ps/non-nested'
| '/relative/link'
| '/relative/useNavigate'
| '/(another-group)/onlyrouteinside'
| '/(group)'
| '/(group)/_layout'
| '/(group)/inside'
| '/(group)/lazyinside'
| '/_layout/_layout-2'
| '/non-nested/baz'
| '/posts/$postId'
| '/redirect/$target'
| '/search-params/default'
| '/structural-sharing/$enabled'
| '/params-ps/'
| '/posts/'
| '/redirect/'
| '/relative/'
| '/search-params/'
| '/params-ps/named/$foo'
| '/params-ps/non-nested/$foo_'
| '/(group)/_layout/insidelayout'
| '/(group)/subfolder/inside'
| '/_layout/_layout-2/layout-a'
| '/_layout/_layout-2/layout-b'
| '/non-nested/baz/$bazid'
| '/params-ps/named/prefix{$foo}'
| '/params-ps/named/{$foo}suffix'
| '/params-ps/wildcard/$'
| '/params-ps/wildcard/prefix{$}'
| '/params-ps/wildcard/{$}suffix'
| '/params/single/$value'
| '/posts_/$postId/edit'
| '/redirect/$target/via-beforeLoad'
| '/redirect/$target/via-loader'
| '/redirect/preload/first'
| '/redirect/preload/second'
| '/redirect/preload/third'
| '/relative/link/relative-link-a'
| '/relative/link/relative-link-b'
| '/relative/useNavigate/relative-useNavigate-a'
| '/relative/useNavigate/relative-useNavigate-b'
| '/params-ps/named/'
| '/params-ps/wildcard/'
| '/redirect/$target/'
| '/params-ps/named/$foo/$bar'
| '/non-nested/baz_/$bazid/edit'
| '/params-ps/non-nested/$foo_/$bar'
| '/relative/link/nested/'
| '/relative/link/path/'
| '/relative/link/with-search/'
| '/relative/useNavigate/nested/'
| '/relative/useNavigate/path/'
| '/relative/useNavigate/with-search/'
| '/params-ps/named/$foo/$bar/$baz'
| '/relative/link/nested/deep/'
| '/relative/link/path/$path/'
| '/relative/useNavigate/nested/deep/'
| '/relative/useNavigate/path/$path/'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
NonNestedRouteRoute: typeof NonNestedRouteRouteWithChildren
SearchParamsRouteRoute: typeof SearchParamsRouteRouteWithChildren
LayoutRoute: typeof LayoutRouteWithChildren
AnchorRoute: typeof AnchorRoute
ComponentTypesTestRoute: typeof ComponentTypesTestRoute
EditingARoute: typeof EditingARoute
EditingBRoute: typeof EditingBRoute
NotRemountDepsRoute: typeof NotRemountDepsRoute
PostsRoute: typeof PostsRouteWithChildren
RemountDepsRoute: typeof RemountDepsRoute
Char45824Char54620Char48124Char44397Route: typeof Char45824Char54620Char48124Char44397Route
ParamsPsNonNestedRouteRoute: typeof ParamsPsNonNestedRouteRouteWithChildren
RelativeLinkRouteRoute: typeof RelativeLinkRouteRouteWithChildren
RelativeUseNavigateRouteRoute: typeof RelativeUseNavigateRouteRouteWithChildren
anotherGroupOnlyrouteinsideRoute: typeof anotherGroupOnlyrouteinsideRoute
groupRoute: typeof groupRouteWithChildren
RedirectTargetRoute: typeof RedirectTargetRouteWithChildren
StructuralSharingEnabledRoute: typeof StructuralSharingEnabledRoute
ParamsPsIndexRoute: typeof ParamsPsIndexRoute
RedirectIndexRoute: typeof RedirectIndexRoute
RelativeIndexRoute: typeof RelativeIndexRoute
ParamsPsNamedFooRouteRoute: typeof ParamsPsNamedFooRouteRouteWithChildren
ParamsPsNamedPrefixChar123fooChar125Route: typeof ParamsPsNamedPrefixChar123fooChar125Route
ParamsPsNamedChar123fooChar125suffixRoute: typeof ParamsPsNamedChar123fooChar125suffixRoute
ParamsPsWildcardSplatRoute: typeof ParamsPsWildcardSplatRoute
ParamsPsWildcardPrefixChar123Char125Route: typeof ParamsPsWildcardPrefixChar123Char125Route
ParamsPsWildcardChar123Char125suffixRoute: typeof ParamsPsWildcardChar123Char125suffixRoute
ParamsSingleValueRoute: typeof ParamsSingleValueRoute
PostsPostIdEditRoute: typeof PostsPostIdEditRoute
RedirectPreloadFirstRoute: typeof RedirectPreloadFirstRoute
RedirectPreloadSecondRoute: typeof RedirectPreloadSecondRoute
RedirectPreloadThirdRoute: typeof RedirectPreloadThirdRoute
ParamsPsNamedIndexRoute: typeof ParamsPsNamedIndexRoute
ParamsPsWildcardIndexRoute: typeof ParamsPsWildcardIndexRoute
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/(group)': {
id: '/(group)'
path: '/'
fullPath: '/'
preLoaderRoute: typeof groupRouteImport
parentRoute: typeof rootRouteImport
}
'/대한민국': {
id: '/대한민국'
path: '/대한민국'
fullPath: '/대한민국'
preLoaderRoute: typeof Char45824Char54620Char48124Char44397RouteImport
parentRoute: typeof rootRouteImport
}
'/remountDeps': {
id: '/remountDeps'
path: '/remountDeps'
fullPath: '/remountDeps'
preLoaderRoute: typeof RemountDepsRouteImport
parentRoute: typeof rootRouteImport
}
'/posts': {
id: '/posts'
path: '/posts'
fullPath: '/posts'
preLoaderRoute: typeof PostsRouteImport
parentRoute: typeof rootRouteImport
}
'/notRemountDeps': {
id: '/notRemountDeps'
path: '/notRemountDeps'
fullPath: '/notRemountDeps'
preLoaderRoute: typeof NotRemountDepsRouteImport
parentRoute: typeof rootRouteImport
}
'/editing-b': {
id: '/editing-b'
path: '/editing-b'
fullPath: '/editing-b'
preLoaderRoute: typeof EditingBRouteImport
parentRoute: typeof rootRouteImport
}
'/editing-a': {
id: '/editing-a'
path: '/editing-a'
fullPath: '/editing-a'
preLoaderRoute: typeof EditingARouteImport
parentRoute: typeof rootRouteImport
}
'/component-types-test': {
id: '/component-types-test'
path: '/component-types-test'
fullPath: '/component-types-test'
preLoaderRoute: typeof ComponentTypesTestRouteImport
parentRoute: typeof rootRouteImport
}
'/anchor': {
id: '/anchor'
path: '/anchor'
fullPath: '/anchor'
preLoaderRoute: typeof AnchorRouteImport
parentRoute: typeof rootRouteImport
}
'/_layout': {
id: '/_layout'
path: ''
fullPath: ''
preLoaderRoute: typeof LayoutRouteImport
parentRoute: typeof rootRouteImport
}
'/search-params': {
id: '/search-params'
path: '/search-params'
fullPath: '/search-params'
preLoaderRoute: typeof SearchParamsRouteRouteImport
parentRoute: typeof rootRouteImport
}