-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathrouteTree.gen.ts
More file actions
1725 lines (1665 loc) · 65.7 KB
/
Copy pathrouteTree.gen.ts
File metadata and controls
1725 lines (1665 loc) · 65.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 { Route as rootRouteImport } from './routes/__root'
import { Route as UsersRouteImport } from './routes/users'
import { Route as TypeOnlyReexportRouteImport } from './routes/type-only-reexport'
import { Route as StreamRouteImport } from './routes/stream'
import { Route as ScriptsRouteImport } from './routes/scripts'
import { Route as RawStreamRouteImport } from './routes/raw-stream'
import { Route as PrimitiveBeforeloadErrorRouteImport } from './routes/primitive-beforeload-error'
import { Route as PostsRouteImport } from './routes/posts'
import { Route as PlainTsTypeAssertionRouteImport } from './routes/plain-ts-type-assertion'
import { Route as LinksRouteImport } from './routes/links'
import { Route as InlineScriptsRouteImport } from './routes/inline-scripts'
import { Route as DeferredRouteImport } from './routes/deferred'
import { Route as ClientOnlyRouteImport } from './routes/client-only'
import { Route as AsyncScriptsRouteImport } from './routes/async-scripts'
import { Route as LayoutRouteImport } from './routes/_layout'
import { Route as SpecialCharsRouteRouteImport } from './routes/specialChars/route'
import { Route as SearchParamsRouteRouteImport } from './routes/search-params/route'
import { Route as NotFoundRouteRouteImport } from './routes/not-found/route'
import { Route as HydrationCappedAssetsRouteRouteImport } from './routes/hydration-capped-assets/route'
import { Route as IndexRouteImport } from './routes/index'
import { Route as UsersIndexRouteImport } from './routes/users.index'
import { Route as SearchParamsIndexRouteImport } from './routes/search-params/index'
import { Route as RedirectIndexRouteImport } from './routes/redirect/index'
import { Route as RawStreamIndexRouteImport } from './routes/raw-stream/index'
import { Route as PostsIndexRouteImport } from './routes/posts.index'
import { Route as NotFoundIndexRouteImport } from './routes/not-found/index'
import { Route as MultiCookieRedirectIndexRouteImport } from './routes/multi-cookie-redirect/index'
import { Route as UsersUserIdRouteImport } from './routes/users.$userId'
import { Route as SpecialCharsChar45824Char54620Char48124Char44397RouteImport } from './routes/specialChars/대한민국'
import { Route as SpecialCharsSearchRouteImport } from './routes/specialChars/search'
import { Route as SpecialCharsHashRouteImport } from './routes/specialChars/hash'
import { Route as SpecialCharsParamRouteImport } from './routes/specialChars/$param'
import { Route as SearchParamsLoaderThrowsRedirectRouteImport } from './routes/search-params/loader-throws-redirect'
import { Route as SearchParamsDefaultRouteImport } from './routes/search-params/default'
import { Route as RedirectTargetRouteImport } from './routes/redirect/$target'
import { Route as RawStreamSsrTextHintRouteImport } from './routes/raw-stream/ssr-text-hint'
import { Route as RawStreamSsrSingleRouteImport } from './routes/raw-stream/ssr-single'
import { Route as RawStreamSsrMultipleRouteImport } from './routes/raw-stream/ssr-multiple'
import { Route as RawStreamSsrMixedRouteImport } from './routes/raw-stream/ssr-mixed'
import { Route as RawStreamSsrBinaryHintRouteImport } from './routes/raw-stream/ssr-binary-hint'
import { Route as RawStreamClientCallRouteImport } from './routes/raw-stream/client-call'
import { Route as PostsPostIdRouteImport } from './routes/posts.$postId'
import { Route as NotFoundViaLoaderRouteImport } from './routes/not-found/via-loader'
import { Route as NotFoundViaBeforeLoadTargetRootRouteImport } from './routes/not-found/via-beforeLoad-target-root'
import { Route as NotFoundViaBeforeLoadRouteImport } from './routes/not-found/via-beforeLoad'
import { Route as MultiCookieRedirectTargetRouteImport } from './routes/multi-cookie-redirect/target'
import { Route as HydrationCappedAssetsChildRouteImport } from './routes/hydration-capped-assets/child'
import { Route as ApiUsersRouteImport } from './routes/api.users'
import { Route as LayoutLayout2RouteImport } from './routes/_layout/_layout-2'
import { Route as SpecialCharsMalformedRouteRouteImport } from './routes/specialChars/malformed/route'
import { Route as NotFoundParentBoundaryRouteRouteImport } from './routes/not-found/parent-boundary/route'
import { Route as NotFoundDeepRouteRouteImport } from './routes/not-found/deep/route'
import { Route as RedirectTargetIndexRouteImport } from './routes/redirect/$target/index'
import { Route as NotFoundParentBoundaryIndexRouteImport } from './routes/not-found/parent-boundary/index'
import { Route as NotFoundDeepIndexRouteImport } from './routes/not-found/deep/index'
import { Route as SpecialCharsMalformedSearchRouteImport } from './routes/specialChars/malformed/search'
import { Route as SpecialCharsMalformedParamRouteImport } from './routes/specialChars/malformed/$param'
import { Route as RedirectTargetViaLoaderRouteImport } from './routes/redirect/$target/via-loader'
import { Route as RedirectTargetViaBeforeLoadRouteImport } from './routes/redirect/$target/via-beforeLoad'
import { Route as PostsPostIdDeepRouteImport } from './routes/posts_.$postId.deep'
import { Route as NotFoundParentBoundaryViaBeforeLoadRouteImport } from './routes/not-found/parent-boundary/via-beforeLoad'
import { Route as ApiUsersIdRouteImport } from './routes/api/users.$id'
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 NotFoundDeepBRouteRouteImport } from './routes/not-found/deep/b/route'
import { Route as RedirectTargetServerFnIndexRouteImport } from './routes/redirect/$target/serverFn/index'
import { Route as RedirectTargetServerFnViaUseServerFnRouteImport } from './routes/redirect/$target/serverFn/via-useServerFn'
import { Route as RedirectTargetServerFnViaLoaderRouteImport } from './routes/redirect/$target/serverFn/via-loader'
import { Route as RedirectTargetServerFnViaBeforeLoadRouteImport } from './routes/redirect/$target/serverFn/via-beforeLoad'
import { Route as FooBarQuxHereRouteImport } from './routes/foo/$bar/$qux/_here'
import { Route as NotFoundDeepBCRouteRouteImport } from './routes/not-found/deep/b/c/route'
import { Route as FooBarQuxHereIndexRouteImport } from './routes/foo/$bar/$qux/_here/index'
import { Route as NotFoundDeepBCDRouteImport } from './routes/not-found/deep/b/c/d'
const UsersRoute = UsersRouteImport.update({
id: '/users',
path: '/users',
getParentRoute: () => rootRouteImport,
} as any)
const TypeOnlyReexportRoute = TypeOnlyReexportRouteImport.update({
id: '/type-only-reexport',
path: '/type-only-reexport',
getParentRoute: () => rootRouteImport,
} as any)
const StreamRoute = StreamRouteImport.update({
id: '/stream',
path: '/stream',
getParentRoute: () => rootRouteImport,
} as any)
const ScriptsRoute = ScriptsRouteImport.update({
id: '/scripts',
path: '/scripts',
getParentRoute: () => rootRouteImport,
} as any)
const RawStreamRoute = RawStreamRouteImport.update({
id: '/raw-stream',
path: '/raw-stream',
getParentRoute: () => rootRouteImport,
} as any)
const PrimitiveBeforeloadErrorRoute =
PrimitiveBeforeloadErrorRouteImport.update({
id: '/primitive-beforeload-error',
path: '/primitive-beforeload-error',
getParentRoute: () => rootRouteImport,
} as any)
const PostsRoute = PostsRouteImport.update({
id: '/posts',
path: '/posts',
getParentRoute: () => rootRouteImport,
} as any)
const PlainTsTypeAssertionRoute = PlainTsTypeAssertionRouteImport.update({
id: '/plain-ts-type-assertion',
path: '/plain-ts-type-assertion',
getParentRoute: () => rootRouteImport,
} as any)
const LinksRoute = LinksRouteImport.update({
id: '/links',
path: '/links',
getParentRoute: () => rootRouteImport,
} as any)
const InlineScriptsRoute = InlineScriptsRouteImport.update({
id: '/inline-scripts',
path: '/inline-scripts',
getParentRoute: () => rootRouteImport,
} as any)
const DeferredRoute = DeferredRouteImport.update({
id: '/deferred',
path: '/deferred',
getParentRoute: () => rootRouteImport,
} as any)
const ClientOnlyRoute = ClientOnlyRouteImport.update({
id: '/client-only',
path: '/client-only',
getParentRoute: () => rootRouteImport,
} as any)
const AsyncScriptsRoute = AsyncScriptsRouteImport.update({
id: '/async-scripts',
path: '/async-scripts',
getParentRoute: () => rootRouteImport,
} as any)
const LayoutRoute = LayoutRouteImport.update({
id: '/_layout',
getParentRoute: () => rootRouteImport,
} as any)
const SpecialCharsRouteRoute = SpecialCharsRouteRouteImport.update({
id: '/specialChars',
path: '/specialChars',
getParentRoute: () => rootRouteImport,
} as any)
const SearchParamsRouteRoute = SearchParamsRouteRouteImport.update({
id: '/search-params',
path: '/search-params',
getParentRoute: () => rootRouteImport,
} as any)
const NotFoundRouteRoute = NotFoundRouteRouteImport.update({
id: '/not-found',
path: '/not-found',
getParentRoute: () => rootRouteImport,
} as any)
const HydrationCappedAssetsRouteRoute =
HydrationCappedAssetsRouteRouteImport.update({
id: '/hydration-capped-assets',
path: '/hydration-capped-assets',
getParentRoute: () => rootRouteImport,
} as any)
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
} as any)
const UsersIndexRoute = UsersIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => UsersRoute,
} as any)
const SearchParamsIndexRoute = SearchParamsIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => SearchParamsRouteRoute,
} as any)
const RedirectIndexRoute = RedirectIndexRouteImport.update({
id: '/redirect/',
path: '/redirect/',
getParentRoute: () => rootRouteImport,
} as any)
const RawStreamIndexRoute = RawStreamIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => RawStreamRoute,
} as any)
const PostsIndexRoute = PostsIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => PostsRoute,
} as any)
const NotFoundIndexRoute = NotFoundIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => NotFoundRouteRoute,
} as any)
const MultiCookieRedirectIndexRoute =
MultiCookieRedirectIndexRouteImport.update({
id: '/multi-cookie-redirect/',
path: '/multi-cookie-redirect/',
getParentRoute: () => rootRouteImport,
} as any)
const UsersUserIdRoute = UsersUserIdRouteImport.update({
id: '/$userId',
path: '/$userId',
getParentRoute: () => UsersRoute,
} as any)
const SpecialCharsChar45824Char54620Char48124Char44397Route =
SpecialCharsChar45824Char54620Char48124Char44397RouteImport.update({
id: '/대한민국',
path: '/대한민국',
getParentRoute: () => SpecialCharsRouteRoute,
} as any)
const SpecialCharsSearchRoute = SpecialCharsSearchRouteImport.update({
id: '/search',
path: '/search',
getParentRoute: () => SpecialCharsRouteRoute,
} as any)
const SpecialCharsHashRoute = SpecialCharsHashRouteImport.update({
id: '/hash',
path: '/hash',
getParentRoute: () => SpecialCharsRouteRoute,
} as any)
const SpecialCharsParamRoute = SpecialCharsParamRouteImport.update({
id: '/$param',
path: '/$param',
getParentRoute: () => SpecialCharsRouteRoute,
} as any)
const SearchParamsLoaderThrowsRedirectRoute =
SearchParamsLoaderThrowsRedirectRouteImport.update({
id: '/loader-throws-redirect',
path: '/loader-throws-redirect',
getParentRoute: () => SearchParamsRouteRoute,
} 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 RawStreamSsrTextHintRoute = RawStreamSsrTextHintRouteImport.update({
id: '/ssr-text-hint',
path: '/ssr-text-hint',
getParentRoute: () => RawStreamRoute,
} as any)
const RawStreamSsrSingleRoute = RawStreamSsrSingleRouteImport.update({
id: '/ssr-single',
path: '/ssr-single',
getParentRoute: () => RawStreamRoute,
} as any)
const RawStreamSsrMultipleRoute = RawStreamSsrMultipleRouteImport.update({
id: '/ssr-multiple',
path: '/ssr-multiple',
getParentRoute: () => RawStreamRoute,
} as any)
const RawStreamSsrMixedRoute = RawStreamSsrMixedRouteImport.update({
id: '/ssr-mixed',
path: '/ssr-mixed',
getParentRoute: () => RawStreamRoute,
} as any)
const RawStreamSsrBinaryHintRoute = RawStreamSsrBinaryHintRouteImport.update({
id: '/ssr-binary-hint',
path: '/ssr-binary-hint',
getParentRoute: () => RawStreamRoute,
} as any)
const RawStreamClientCallRoute = RawStreamClientCallRouteImport.update({
id: '/client-call',
path: '/client-call',
getParentRoute: () => RawStreamRoute,
} as any)
const PostsPostIdRoute = PostsPostIdRouteImport.update({
id: '/$postId',
path: '/$postId',
getParentRoute: () => PostsRoute,
} as any)
const NotFoundViaLoaderRoute = NotFoundViaLoaderRouteImport.update({
id: '/via-loader',
path: '/via-loader',
getParentRoute: () => NotFoundRouteRoute,
} as any)
const NotFoundViaBeforeLoadTargetRootRoute =
NotFoundViaBeforeLoadTargetRootRouteImport.update({
id: '/via-beforeLoad-target-root',
path: '/via-beforeLoad-target-root',
getParentRoute: () => NotFoundRouteRoute,
} as any)
const NotFoundViaBeforeLoadRoute = NotFoundViaBeforeLoadRouteImport.update({
id: '/via-beforeLoad',
path: '/via-beforeLoad',
getParentRoute: () => NotFoundRouteRoute,
} as any)
const MultiCookieRedirectTargetRoute =
MultiCookieRedirectTargetRouteImport.update({
id: '/multi-cookie-redirect/target',
path: '/multi-cookie-redirect/target',
getParentRoute: () => rootRouteImport,
} as any)
const HydrationCappedAssetsChildRoute =
HydrationCappedAssetsChildRouteImport.update({
id: '/child',
path: '/child',
getParentRoute: () => HydrationCappedAssetsRouteRoute,
} as any)
const ApiUsersRoute = ApiUsersRouteImport.update({
id: '/api/users',
path: '/api/users',
getParentRoute: () => rootRouteImport,
} as any)
const LayoutLayout2Route = LayoutLayout2RouteImport.update({
id: '/_layout-2',
getParentRoute: () => LayoutRoute,
} as any)
const SpecialCharsMalformedRouteRoute =
SpecialCharsMalformedRouteRouteImport.update({
id: '/malformed',
path: '/malformed',
getParentRoute: () => SpecialCharsRouteRoute,
} as any)
const NotFoundParentBoundaryRouteRoute =
NotFoundParentBoundaryRouteRouteImport.update({
id: '/parent-boundary',
path: '/parent-boundary',
getParentRoute: () => NotFoundRouteRoute,
} as any)
const NotFoundDeepRouteRoute = NotFoundDeepRouteRouteImport.update({
id: '/deep',
path: '/deep',
getParentRoute: () => NotFoundRouteRoute,
} as any)
const RedirectTargetIndexRoute = RedirectTargetIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => RedirectTargetRoute,
} as any)
const NotFoundParentBoundaryIndexRoute =
NotFoundParentBoundaryIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => NotFoundParentBoundaryRouteRoute,
} as any)
const NotFoundDeepIndexRoute = NotFoundDeepIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => NotFoundDeepRouteRoute,
} as any)
const SpecialCharsMalformedSearchRoute =
SpecialCharsMalformedSearchRouteImport.update({
id: '/search',
path: '/search',
getParentRoute: () => SpecialCharsMalformedRouteRoute,
} as any)
const SpecialCharsMalformedParamRoute =
SpecialCharsMalformedParamRouteImport.update({
id: '/$param',
path: '/$param',
getParentRoute: () => SpecialCharsMalformedRouteRoute,
} 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 PostsPostIdDeepRoute = PostsPostIdDeepRouteImport.update({
id: '/posts_/$postId/deep',
path: '/posts/$postId/deep',
getParentRoute: () => rootRouteImport,
} as any)
const NotFoundParentBoundaryViaBeforeLoadRoute =
NotFoundParentBoundaryViaBeforeLoadRouteImport.update({
id: '/via-beforeLoad',
path: '/via-beforeLoad',
getParentRoute: () => NotFoundParentBoundaryRouteRoute,
} as any)
const ApiUsersIdRoute = ApiUsersIdRouteImport.update({
id: '/$id',
path: '/$id',
getParentRoute: () => ApiUsersRoute,
} 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 NotFoundDeepBRouteRoute = NotFoundDeepBRouteRouteImport.update({
id: '/b',
path: '/b',
getParentRoute: () => NotFoundDeepRouteRoute,
} as any)
const RedirectTargetServerFnIndexRoute =
RedirectTargetServerFnIndexRouteImport.update({
id: '/serverFn/',
path: '/serverFn/',
getParentRoute: () => RedirectTargetRoute,
} as any)
const RedirectTargetServerFnViaUseServerFnRoute =
RedirectTargetServerFnViaUseServerFnRouteImport.update({
id: '/serverFn/via-useServerFn',
path: '/serverFn/via-useServerFn',
getParentRoute: () => RedirectTargetRoute,
} as any)
const RedirectTargetServerFnViaLoaderRoute =
RedirectTargetServerFnViaLoaderRouteImport.update({
id: '/serverFn/via-loader',
path: '/serverFn/via-loader',
getParentRoute: () => RedirectTargetRoute,
} as any)
const RedirectTargetServerFnViaBeforeLoadRoute =
RedirectTargetServerFnViaBeforeLoadRouteImport.update({
id: '/serverFn/via-beforeLoad',
path: '/serverFn/via-beforeLoad',
getParentRoute: () => RedirectTargetRoute,
} as any)
const FooBarQuxHereRoute = FooBarQuxHereRouteImport.update({
id: '/foo/$bar/$qux/_here',
path: '/foo/$bar/$qux',
getParentRoute: () => rootRouteImport,
} as any)
const NotFoundDeepBCRouteRoute = NotFoundDeepBCRouteRouteImport.update({
id: '/c',
path: '/c',
getParentRoute: () => NotFoundDeepBRouteRoute,
} as any)
const FooBarQuxHereIndexRoute = FooBarQuxHereIndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => FooBarQuxHereRoute,
} as any)
const NotFoundDeepBCDRoute = NotFoundDeepBCDRouteImport.update({
id: '/d',
path: '/d',
getParentRoute: () => NotFoundDeepBCRouteRoute,
} as any)
export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/hydration-capped-assets': typeof HydrationCappedAssetsRouteRouteWithChildren
'/not-found': typeof NotFoundRouteRouteWithChildren
'/search-params': typeof SearchParamsRouteRouteWithChildren
'/specialChars': typeof SpecialCharsRouteRouteWithChildren
'/async-scripts': typeof AsyncScriptsRoute
'/client-only': typeof ClientOnlyRoute
'/deferred': typeof DeferredRoute
'/inline-scripts': typeof InlineScriptsRoute
'/links': typeof LinksRoute
'/plain-ts-type-assertion': typeof PlainTsTypeAssertionRoute
'/posts': typeof PostsRouteWithChildren
'/primitive-beforeload-error': typeof PrimitiveBeforeloadErrorRoute
'/raw-stream': typeof RawStreamRouteWithChildren
'/scripts': typeof ScriptsRoute
'/stream': typeof StreamRoute
'/type-only-reexport': typeof TypeOnlyReexportRoute
'/users': typeof UsersRouteWithChildren
'/not-found/deep': typeof NotFoundDeepRouteRouteWithChildren
'/not-found/parent-boundary': typeof NotFoundParentBoundaryRouteRouteWithChildren
'/specialChars/malformed': typeof SpecialCharsMalformedRouteRouteWithChildren
'/api/users': typeof ApiUsersRouteWithChildren
'/hydration-capped-assets/child': typeof HydrationCappedAssetsChildRoute
'/multi-cookie-redirect/target': typeof MultiCookieRedirectTargetRoute
'/not-found/via-beforeLoad': typeof NotFoundViaBeforeLoadRoute
'/not-found/via-beforeLoad-target-root': typeof NotFoundViaBeforeLoadTargetRootRoute
'/not-found/via-loader': typeof NotFoundViaLoaderRoute
'/posts/$postId': typeof PostsPostIdRoute
'/raw-stream/client-call': typeof RawStreamClientCallRoute
'/raw-stream/ssr-binary-hint': typeof RawStreamSsrBinaryHintRoute
'/raw-stream/ssr-mixed': typeof RawStreamSsrMixedRoute
'/raw-stream/ssr-multiple': typeof RawStreamSsrMultipleRoute
'/raw-stream/ssr-single': typeof RawStreamSsrSingleRoute
'/raw-stream/ssr-text-hint': typeof RawStreamSsrTextHintRoute
'/redirect/$target': typeof RedirectTargetRouteWithChildren
'/search-params/default': typeof SearchParamsDefaultRoute
'/search-params/loader-throws-redirect': typeof SearchParamsLoaderThrowsRedirectRoute
'/specialChars/$param': typeof SpecialCharsParamRoute
'/specialChars/hash': typeof SpecialCharsHashRoute
'/specialChars/search': typeof SpecialCharsSearchRoute
'/specialChars/대한민국': typeof SpecialCharsChar45824Char54620Char48124Char44397Route
'/users/$userId': typeof UsersUserIdRoute
'/multi-cookie-redirect/': typeof MultiCookieRedirectIndexRoute
'/not-found/': typeof NotFoundIndexRoute
'/posts/': typeof PostsIndexRoute
'/raw-stream/': typeof RawStreamIndexRoute
'/redirect/': typeof RedirectIndexRoute
'/search-params/': typeof SearchParamsIndexRoute
'/users/': typeof UsersIndexRoute
'/not-found/deep/b': typeof NotFoundDeepBRouteRouteWithChildren
'/layout-a': typeof LayoutLayout2LayoutARoute
'/layout-b': typeof LayoutLayout2LayoutBRoute
'/api/users/$id': typeof ApiUsersIdRoute
'/not-found/parent-boundary/via-beforeLoad': typeof NotFoundParentBoundaryViaBeforeLoadRoute
'/posts/$postId/deep': typeof PostsPostIdDeepRoute
'/redirect/$target/via-beforeLoad': typeof RedirectTargetViaBeforeLoadRoute
'/redirect/$target/via-loader': typeof RedirectTargetViaLoaderRoute
'/specialChars/malformed/$param': typeof SpecialCharsMalformedParamRoute
'/specialChars/malformed/search': typeof SpecialCharsMalformedSearchRoute
'/not-found/deep/': typeof NotFoundDeepIndexRoute
'/not-found/parent-boundary/': typeof NotFoundParentBoundaryIndexRoute
'/redirect/$target/': typeof RedirectTargetIndexRoute
'/not-found/deep/b/c': typeof NotFoundDeepBCRouteRouteWithChildren
'/foo/$bar/$qux': typeof FooBarQuxHereRouteWithChildren
'/redirect/$target/serverFn/via-beforeLoad': typeof RedirectTargetServerFnViaBeforeLoadRoute
'/redirect/$target/serverFn/via-loader': typeof RedirectTargetServerFnViaLoaderRoute
'/redirect/$target/serverFn/via-useServerFn': typeof RedirectTargetServerFnViaUseServerFnRoute
'/redirect/$target/serverFn/': typeof RedirectTargetServerFnIndexRoute
'/not-found/deep/b/c/d': typeof NotFoundDeepBCDRoute
'/foo/$bar/$qux/': typeof FooBarQuxHereIndexRoute
}
export interface FileRoutesByTo {
'/': typeof IndexRoute
'/hydration-capped-assets': typeof HydrationCappedAssetsRouteRouteWithChildren
'/specialChars': typeof SpecialCharsRouteRouteWithChildren
'/async-scripts': typeof AsyncScriptsRoute
'/client-only': typeof ClientOnlyRoute
'/deferred': typeof DeferredRoute
'/inline-scripts': typeof InlineScriptsRoute
'/links': typeof LinksRoute
'/plain-ts-type-assertion': typeof PlainTsTypeAssertionRoute
'/primitive-beforeload-error': typeof PrimitiveBeforeloadErrorRoute
'/scripts': typeof ScriptsRoute
'/stream': typeof StreamRoute
'/type-only-reexport': typeof TypeOnlyReexportRoute
'/specialChars/malformed': typeof SpecialCharsMalformedRouteRouteWithChildren
'/api/users': typeof ApiUsersRouteWithChildren
'/hydration-capped-assets/child': typeof HydrationCappedAssetsChildRoute
'/multi-cookie-redirect/target': typeof MultiCookieRedirectTargetRoute
'/not-found/via-beforeLoad': typeof NotFoundViaBeforeLoadRoute
'/not-found/via-beforeLoad-target-root': typeof NotFoundViaBeforeLoadTargetRootRoute
'/not-found/via-loader': typeof NotFoundViaLoaderRoute
'/posts/$postId': typeof PostsPostIdRoute
'/raw-stream/client-call': typeof RawStreamClientCallRoute
'/raw-stream/ssr-binary-hint': typeof RawStreamSsrBinaryHintRoute
'/raw-stream/ssr-mixed': typeof RawStreamSsrMixedRoute
'/raw-stream/ssr-multiple': typeof RawStreamSsrMultipleRoute
'/raw-stream/ssr-single': typeof RawStreamSsrSingleRoute
'/raw-stream/ssr-text-hint': typeof RawStreamSsrTextHintRoute
'/search-params/default': typeof SearchParamsDefaultRoute
'/search-params/loader-throws-redirect': typeof SearchParamsLoaderThrowsRedirectRoute
'/specialChars/$param': typeof SpecialCharsParamRoute
'/specialChars/hash': typeof SpecialCharsHashRoute
'/specialChars/search': typeof SpecialCharsSearchRoute
'/specialChars/대한민국': typeof SpecialCharsChar45824Char54620Char48124Char44397Route
'/users/$userId': typeof UsersUserIdRoute
'/multi-cookie-redirect': typeof MultiCookieRedirectIndexRoute
'/not-found': typeof NotFoundIndexRoute
'/posts': typeof PostsIndexRoute
'/raw-stream': typeof RawStreamIndexRoute
'/redirect': typeof RedirectIndexRoute
'/search-params': typeof SearchParamsIndexRoute
'/users': typeof UsersIndexRoute
'/not-found/deep/b': typeof NotFoundDeepBRouteRouteWithChildren
'/layout-a': typeof LayoutLayout2LayoutARoute
'/layout-b': typeof LayoutLayout2LayoutBRoute
'/api/users/$id': typeof ApiUsersIdRoute
'/not-found/parent-boundary/via-beforeLoad': typeof NotFoundParentBoundaryViaBeforeLoadRoute
'/posts/$postId/deep': typeof PostsPostIdDeepRoute
'/redirect/$target/via-beforeLoad': typeof RedirectTargetViaBeforeLoadRoute
'/redirect/$target/via-loader': typeof RedirectTargetViaLoaderRoute
'/specialChars/malformed/$param': typeof SpecialCharsMalformedParamRoute
'/specialChars/malformed/search': typeof SpecialCharsMalformedSearchRoute
'/not-found/deep': typeof NotFoundDeepIndexRoute
'/not-found/parent-boundary': typeof NotFoundParentBoundaryIndexRoute
'/redirect/$target': typeof RedirectTargetIndexRoute
'/not-found/deep/b/c': typeof NotFoundDeepBCRouteRouteWithChildren
'/redirect/$target/serverFn/via-beforeLoad': typeof RedirectTargetServerFnViaBeforeLoadRoute
'/redirect/$target/serverFn/via-loader': typeof RedirectTargetServerFnViaLoaderRoute
'/redirect/$target/serverFn/via-useServerFn': typeof RedirectTargetServerFnViaUseServerFnRoute
'/redirect/$target/serverFn': typeof RedirectTargetServerFnIndexRoute
'/not-found/deep/b/c/d': typeof NotFoundDeepBCDRoute
'/foo/$bar/$qux': typeof FooBarQuxHereIndexRoute
}
export interface FileRoutesById {
__root__: typeof rootRouteImport
'/': typeof IndexRoute
'/hydration-capped-assets': typeof HydrationCappedAssetsRouteRouteWithChildren
'/not-found': typeof NotFoundRouteRouteWithChildren
'/search-params': typeof SearchParamsRouteRouteWithChildren
'/specialChars': typeof SpecialCharsRouteRouteWithChildren
'/_layout': typeof LayoutRouteWithChildren
'/async-scripts': typeof AsyncScriptsRoute
'/client-only': typeof ClientOnlyRoute
'/deferred': typeof DeferredRoute
'/inline-scripts': typeof InlineScriptsRoute
'/links': typeof LinksRoute
'/plain-ts-type-assertion': typeof PlainTsTypeAssertionRoute
'/posts': typeof PostsRouteWithChildren
'/primitive-beforeload-error': typeof PrimitiveBeforeloadErrorRoute
'/raw-stream': typeof RawStreamRouteWithChildren
'/scripts': typeof ScriptsRoute
'/stream': typeof StreamRoute
'/type-only-reexport': typeof TypeOnlyReexportRoute
'/users': typeof UsersRouteWithChildren
'/not-found/deep': typeof NotFoundDeepRouteRouteWithChildren
'/not-found/parent-boundary': typeof NotFoundParentBoundaryRouteRouteWithChildren
'/specialChars/malformed': typeof SpecialCharsMalformedRouteRouteWithChildren
'/_layout/_layout-2': typeof LayoutLayout2RouteWithChildren
'/api/users': typeof ApiUsersRouteWithChildren
'/hydration-capped-assets/child': typeof HydrationCappedAssetsChildRoute
'/multi-cookie-redirect/target': typeof MultiCookieRedirectTargetRoute
'/not-found/via-beforeLoad': typeof NotFoundViaBeforeLoadRoute
'/not-found/via-beforeLoad-target-root': typeof NotFoundViaBeforeLoadTargetRootRoute
'/not-found/via-loader': typeof NotFoundViaLoaderRoute
'/posts/$postId': typeof PostsPostIdRoute
'/raw-stream/client-call': typeof RawStreamClientCallRoute
'/raw-stream/ssr-binary-hint': typeof RawStreamSsrBinaryHintRoute
'/raw-stream/ssr-mixed': typeof RawStreamSsrMixedRoute
'/raw-stream/ssr-multiple': typeof RawStreamSsrMultipleRoute
'/raw-stream/ssr-single': typeof RawStreamSsrSingleRoute
'/raw-stream/ssr-text-hint': typeof RawStreamSsrTextHintRoute
'/redirect/$target': typeof RedirectTargetRouteWithChildren
'/search-params/default': typeof SearchParamsDefaultRoute
'/search-params/loader-throws-redirect': typeof SearchParamsLoaderThrowsRedirectRoute
'/specialChars/$param': typeof SpecialCharsParamRoute
'/specialChars/hash': typeof SpecialCharsHashRoute
'/specialChars/search': typeof SpecialCharsSearchRoute
'/specialChars/대한민국': typeof SpecialCharsChar45824Char54620Char48124Char44397Route
'/users/$userId': typeof UsersUserIdRoute
'/multi-cookie-redirect/': typeof MultiCookieRedirectIndexRoute
'/not-found/': typeof NotFoundIndexRoute
'/posts/': typeof PostsIndexRoute
'/raw-stream/': typeof RawStreamIndexRoute
'/redirect/': typeof RedirectIndexRoute
'/search-params/': typeof SearchParamsIndexRoute
'/users/': typeof UsersIndexRoute
'/not-found/deep/b': typeof NotFoundDeepBRouteRouteWithChildren
'/_layout/_layout-2/layout-a': typeof LayoutLayout2LayoutARoute
'/_layout/_layout-2/layout-b': typeof LayoutLayout2LayoutBRoute
'/api/users/$id': typeof ApiUsersIdRoute
'/not-found/parent-boundary/via-beforeLoad': typeof NotFoundParentBoundaryViaBeforeLoadRoute
'/posts_/$postId/deep': typeof PostsPostIdDeepRoute
'/redirect/$target/via-beforeLoad': typeof RedirectTargetViaBeforeLoadRoute
'/redirect/$target/via-loader': typeof RedirectTargetViaLoaderRoute
'/specialChars/malformed/$param': typeof SpecialCharsMalformedParamRoute
'/specialChars/malformed/search': typeof SpecialCharsMalformedSearchRoute
'/not-found/deep/': typeof NotFoundDeepIndexRoute
'/not-found/parent-boundary/': typeof NotFoundParentBoundaryIndexRoute
'/redirect/$target/': typeof RedirectTargetIndexRoute
'/not-found/deep/b/c': typeof NotFoundDeepBCRouteRouteWithChildren
'/foo/$bar/$qux/_here': typeof FooBarQuxHereRouteWithChildren
'/redirect/$target/serverFn/via-beforeLoad': typeof RedirectTargetServerFnViaBeforeLoadRoute
'/redirect/$target/serverFn/via-loader': typeof RedirectTargetServerFnViaLoaderRoute
'/redirect/$target/serverFn/via-useServerFn': typeof RedirectTargetServerFnViaUseServerFnRoute
'/redirect/$target/serverFn/': typeof RedirectTargetServerFnIndexRoute
'/not-found/deep/b/c/d': typeof NotFoundDeepBCDRoute
'/foo/$bar/$qux/_here/': typeof FooBarQuxHereIndexRoute
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths:
| '/'
| '/hydration-capped-assets'
| '/not-found'
| '/search-params'
| '/specialChars'
| '/async-scripts'
| '/client-only'
| '/deferred'
| '/inline-scripts'
| '/links'
| '/plain-ts-type-assertion'
| '/posts'
| '/primitive-beforeload-error'
| '/raw-stream'
| '/scripts'
| '/stream'
| '/type-only-reexport'
| '/users'
| '/not-found/deep'
| '/not-found/parent-boundary'
| '/specialChars/malformed'
| '/api/users'
| '/hydration-capped-assets/child'
| '/multi-cookie-redirect/target'
| '/not-found/via-beforeLoad'
| '/not-found/via-beforeLoad-target-root'
| '/not-found/via-loader'
| '/posts/$postId'
| '/raw-stream/client-call'
| '/raw-stream/ssr-binary-hint'
| '/raw-stream/ssr-mixed'
| '/raw-stream/ssr-multiple'
| '/raw-stream/ssr-single'
| '/raw-stream/ssr-text-hint'
| '/redirect/$target'
| '/search-params/default'
| '/search-params/loader-throws-redirect'
| '/specialChars/$param'
| '/specialChars/hash'
| '/specialChars/search'
| '/specialChars/대한민국'
| '/users/$userId'
| '/multi-cookie-redirect/'
| '/not-found/'
| '/posts/'
| '/raw-stream/'
| '/redirect/'
| '/search-params/'
| '/users/'
| '/not-found/deep/b'
| '/layout-a'
| '/layout-b'
| '/api/users/$id'
| '/not-found/parent-boundary/via-beforeLoad'
| '/posts/$postId/deep'
| '/redirect/$target/via-beforeLoad'
| '/redirect/$target/via-loader'
| '/specialChars/malformed/$param'
| '/specialChars/malformed/search'
| '/not-found/deep/'
| '/not-found/parent-boundary/'
| '/redirect/$target/'
| '/not-found/deep/b/c'
| '/foo/$bar/$qux'
| '/redirect/$target/serverFn/via-beforeLoad'
| '/redirect/$target/serverFn/via-loader'
| '/redirect/$target/serverFn/via-useServerFn'
| '/redirect/$target/serverFn/'
| '/not-found/deep/b/c/d'
| '/foo/$bar/$qux/'
fileRoutesByTo: FileRoutesByTo
to:
| '/'
| '/hydration-capped-assets'
| '/specialChars'
| '/async-scripts'
| '/client-only'
| '/deferred'
| '/inline-scripts'
| '/links'
| '/plain-ts-type-assertion'
| '/primitive-beforeload-error'
| '/scripts'
| '/stream'
| '/type-only-reexport'
| '/specialChars/malformed'
| '/api/users'
| '/hydration-capped-assets/child'
| '/multi-cookie-redirect/target'
| '/not-found/via-beforeLoad'
| '/not-found/via-beforeLoad-target-root'
| '/not-found/via-loader'
| '/posts/$postId'
| '/raw-stream/client-call'
| '/raw-stream/ssr-binary-hint'
| '/raw-stream/ssr-mixed'
| '/raw-stream/ssr-multiple'
| '/raw-stream/ssr-single'
| '/raw-stream/ssr-text-hint'
| '/search-params/default'
| '/search-params/loader-throws-redirect'
| '/specialChars/$param'
| '/specialChars/hash'
| '/specialChars/search'
| '/specialChars/대한민국'
| '/users/$userId'
| '/multi-cookie-redirect'
| '/not-found'
| '/posts'
| '/raw-stream'
| '/redirect'
| '/search-params'
| '/users'
| '/not-found/deep/b'
| '/layout-a'
| '/layout-b'
| '/api/users/$id'
| '/not-found/parent-boundary/via-beforeLoad'
| '/posts/$postId/deep'
| '/redirect/$target/via-beforeLoad'
| '/redirect/$target/via-loader'
| '/specialChars/malformed/$param'
| '/specialChars/malformed/search'
| '/not-found/deep'
| '/not-found/parent-boundary'
| '/redirect/$target'
| '/not-found/deep/b/c'
| '/redirect/$target/serverFn/via-beforeLoad'
| '/redirect/$target/serverFn/via-loader'
| '/redirect/$target/serverFn/via-useServerFn'
| '/redirect/$target/serverFn'
| '/not-found/deep/b/c/d'
| '/foo/$bar/$qux'
id:
| '__root__'
| '/'
| '/hydration-capped-assets'
| '/not-found'
| '/search-params'
| '/specialChars'
| '/_layout'
| '/async-scripts'
| '/client-only'
| '/deferred'
| '/inline-scripts'
| '/links'
| '/plain-ts-type-assertion'
| '/posts'
| '/primitive-beforeload-error'
| '/raw-stream'
| '/scripts'
| '/stream'
| '/type-only-reexport'
| '/users'
| '/not-found/deep'
| '/not-found/parent-boundary'
| '/specialChars/malformed'
| '/_layout/_layout-2'
| '/api/users'
| '/hydration-capped-assets/child'
| '/multi-cookie-redirect/target'
| '/not-found/via-beforeLoad'
| '/not-found/via-beforeLoad-target-root'
| '/not-found/via-loader'
| '/posts/$postId'
| '/raw-stream/client-call'
| '/raw-stream/ssr-binary-hint'
| '/raw-stream/ssr-mixed'
| '/raw-stream/ssr-multiple'
| '/raw-stream/ssr-single'
| '/raw-stream/ssr-text-hint'
| '/redirect/$target'
| '/search-params/default'
| '/search-params/loader-throws-redirect'
| '/specialChars/$param'
| '/specialChars/hash'
| '/specialChars/search'
| '/specialChars/대한민국'
| '/users/$userId'
| '/multi-cookie-redirect/'
| '/not-found/'
| '/posts/'
| '/raw-stream/'
| '/redirect/'
| '/search-params/'
| '/users/'
| '/not-found/deep/b'
| '/_layout/_layout-2/layout-a'
| '/_layout/_layout-2/layout-b'
| '/api/users/$id'
| '/not-found/parent-boundary/via-beforeLoad'
| '/posts_/$postId/deep'
| '/redirect/$target/via-beforeLoad'
| '/redirect/$target/via-loader'
| '/specialChars/malformed/$param'
| '/specialChars/malformed/search'
| '/not-found/deep/'
| '/not-found/parent-boundary/'
| '/redirect/$target/'
| '/not-found/deep/b/c'
| '/foo/$bar/$qux/_here'
| '/redirect/$target/serverFn/via-beforeLoad'
| '/redirect/$target/serverFn/via-loader'
| '/redirect/$target/serverFn/via-useServerFn'
| '/redirect/$target/serverFn/'
| '/not-found/deep/b/c/d'
| '/foo/$bar/$qux/_here/'
fileRoutesById: FileRoutesById
}
export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
HydrationCappedAssetsRouteRoute: typeof HydrationCappedAssetsRouteRouteWithChildren
NotFoundRouteRoute: typeof NotFoundRouteRouteWithChildren
SearchParamsRouteRoute: typeof SearchParamsRouteRouteWithChildren
SpecialCharsRouteRoute: typeof SpecialCharsRouteRouteWithChildren
LayoutRoute: typeof LayoutRouteWithChildren
AsyncScriptsRoute: typeof AsyncScriptsRoute
ClientOnlyRoute: typeof ClientOnlyRoute
DeferredRoute: typeof DeferredRoute
InlineScriptsRoute: typeof InlineScriptsRoute
LinksRoute: typeof LinksRoute
PlainTsTypeAssertionRoute: typeof PlainTsTypeAssertionRoute
PostsRoute: typeof PostsRouteWithChildren
PrimitiveBeforeloadErrorRoute: typeof PrimitiveBeforeloadErrorRoute
RawStreamRoute: typeof RawStreamRouteWithChildren
ScriptsRoute: typeof ScriptsRoute
StreamRoute: typeof StreamRoute
TypeOnlyReexportRoute: typeof TypeOnlyReexportRoute
UsersRoute: typeof UsersRouteWithChildren
ApiUsersRoute: typeof ApiUsersRouteWithChildren
MultiCookieRedirectTargetRoute: typeof MultiCookieRedirectTargetRoute
RedirectTargetRoute: typeof RedirectTargetRouteWithChildren
MultiCookieRedirectIndexRoute: typeof MultiCookieRedirectIndexRoute
RedirectIndexRoute: typeof RedirectIndexRoute
PostsPostIdDeepRoute: typeof PostsPostIdDeepRoute
FooBarQuxHereRoute: typeof FooBarQuxHereRouteWithChildren
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/users': {
id: '/users'
path: '/users'
fullPath: '/users'
preLoaderRoute: typeof UsersRouteImport
parentRoute: typeof rootRouteImport
}
'/type-only-reexport': {
id: '/type-only-reexport'
path: '/type-only-reexport'
fullPath: '/type-only-reexport'
preLoaderRoute: typeof TypeOnlyReexportRouteImport
parentRoute: typeof rootRouteImport
}
'/stream': {
id: '/stream'
path: '/stream'
fullPath: '/stream'
preLoaderRoute: typeof StreamRouteImport
parentRoute: typeof rootRouteImport
}
'/scripts': {
id: '/scripts'
path: '/scripts'
fullPath: '/scripts'
preLoaderRoute: typeof ScriptsRouteImport
parentRoute: typeof rootRouteImport
}
'/raw-stream': {
id: '/raw-stream'
path: '/raw-stream'
fullPath: '/raw-stream'
preLoaderRoute: typeof RawStreamRouteImport
parentRoute: typeof rootRouteImport
}
'/primitive-beforeload-error': {
id: '/primitive-beforeload-error'
path: '/primitive-beforeload-error'
fullPath: '/primitive-beforeload-error'
preLoaderRoute: typeof PrimitiveBeforeloadErrorRouteImport
parentRoute: typeof rootRouteImport
}
'/posts': {
id: '/posts'
path: '/posts'
fullPath: '/posts'
preLoaderRoute: typeof PostsRouteImport
parentRoute: typeof rootRouteImport
}
'/plain-ts-type-assertion': {
id: '/plain-ts-type-assertion'
path: '/plain-ts-type-assertion'
fullPath: '/plain-ts-type-assertion'
preLoaderRoute: typeof PlainTsTypeAssertionRouteImport
parentRoute: typeof rootRouteImport
}
'/links': {
id: '/links'
path: '/links'
fullPath: '/links'
preLoaderRoute: typeof LinksRouteImport
parentRoute: typeof rootRouteImport
}
'/inline-scripts': {
id: '/inline-scripts'
path: '/inline-scripts'
fullPath: '/inline-scripts'
preLoaderRoute: typeof InlineScriptsRouteImport
parentRoute: typeof rootRouteImport
}
'/deferred': {
id: '/deferred'
path: '/deferred'
fullPath: '/deferred'
preLoaderRoute: typeof DeferredRouteImport
parentRoute: typeof rootRouteImport
}
'/client-only': {
id: '/client-only'
path: '/client-only'
fullPath: '/client-only'
preLoaderRoute: typeof ClientOnlyRouteImport
parentRoute: typeof rootRouteImport
}
'/async-scripts': {