@kitbag/router 0.22.4 → 0.22.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/compositions/useRoute.d.ts +2 -2
- package/dist/kitbag-router.js +2161 -2221
- package/dist/kitbag-router.umd.cjs +3 -3
- package/dist/services/createRouterHistory.d.ts +1 -1
- package/dist/services/getMatchesForUrl.d.ts +4 -1
- package/dist/services/history.browser.spec.d.ts +1 -0
- package/dist/services/history.d.ts +59 -0
- package/dist/services/withParams.d.ts +6 -6
- package/dist/types/createRouteOptions.d.ts +2 -1
- package/dist/types/params.d.ts +1 -0
- package/dist/types/router.d.ts +3 -2
- package/dist/types/url.d.ts +9 -2
- package/dist/utilities/guards.d.ts +1 -0
- package/dist/utilities/testHelpers.d.ts +344 -172
- package/package.json +8 -9
|
@@ -16,16 +16,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
16
16
|
matched: Omit<{
|
|
17
17
|
readonly name: "parentA";
|
|
18
18
|
readonly path: "/parentA/[paramA]";
|
|
19
|
-
}, "meta" | "props"> & {
|
|
19
|
+
}, "meta" | "name" | "props"> & {
|
|
20
20
|
id: string;
|
|
21
|
+
name: "parentA";
|
|
21
22
|
props: undefined;
|
|
22
23
|
meta: Readonly<{}>;
|
|
23
24
|
};
|
|
24
25
|
matches: [Omit<{
|
|
25
26
|
readonly name: "parentA";
|
|
26
27
|
readonly path: "/parentA/[paramA]";
|
|
27
|
-
}, "meta" | "props"> & {
|
|
28
|
+
}, "meta" | "name" | "props"> & {
|
|
28
29
|
id: string;
|
|
30
|
+
name: "parentA";
|
|
29
31
|
props: undefined;
|
|
30
32
|
meta: Readonly<{}>;
|
|
31
33
|
}];
|
|
@@ -42,8 +44,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
42
44
|
}>, Readonly<{}>, {}, [Omit<{
|
|
43
45
|
readonly name: "parentA";
|
|
44
46
|
readonly path: "/parentA/[paramA]";
|
|
45
|
-
}, "meta" | "props"> & {
|
|
47
|
+
}, "meta" | "name" | "props"> & {
|
|
46
48
|
id: string;
|
|
49
|
+
name: "parentA";
|
|
47
50
|
props: undefined;
|
|
48
51
|
meta: Readonly<{}>;
|
|
49
52
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -52,8 +55,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
52
55
|
}>, Readonly<{}>, {}, [Omit<{
|
|
53
56
|
readonly name: "parentA";
|
|
54
57
|
readonly path: "/parentA/[paramA]";
|
|
55
|
-
}, "meta" | "props"> & {
|
|
58
|
+
}, "meta" | "name" | "props"> & {
|
|
56
59
|
id: string;
|
|
60
|
+
name: "parentA";
|
|
57
61
|
props: undefined;
|
|
58
62
|
meta: Readonly<{}>;
|
|
59
63
|
}], []>>, import('../main').Url<{
|
|
@@ -78,16 +82,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
78
82
|
matched: Omit<{
|
|
79
83
|
readonly name: "parentA";
|
|
80
84
|
readonly path: "/parentA/[paramA]";
|
|
81
|
-
}, "meta" | "props"> & {
|
|
85
|
+
}, "meta" | "name" | "props"> & {
|
|
82
86
|
id: string;
|
|
87
|
+
name: "parentA";
|
|
83
88
|
props: undefined;
|
|
84
89
|
meta: Readonly<{}>;
|
|
85
90
|
};
|
|
86
91
|
matches: [Omit<{
|
|
87
92
|
readonly name: "parentA";
|
|
88
93
|
readonly path: "/parentA/[paramA]";
|
|
89
|
-
}, "meta" | "props"> & {
|
|
94
|
+
}, "meta" | "name" | "props"> & {
|
|
90
95
|
id: string;
|
|
96
|
+
name: "parentA";
|
|
91
97
|
props: undefined;
|
|
92
98
|
meta: Readonly<{}>;
|
|
93
99
|
}];
|
|
@@ -104,8 +110,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
104
110
|
}>, Readonly<{}>, {}, [Omit<{
|
|
105
111
|
readonly name: "parentA";
|
|
106
112
|
readonly path: "/parentA/[paramA]";
|
|
107
|
-
}, "meta" | "props"> & {
|
|
113
|
+
}, "meta" | "name" | "props"> & {
|
|
108
114
|
id: string;
|
|
115
|
+
name: "parentA";
|
|
109
116
|
props: undefined;
|
|
110
117
|
meta: Readonly<{}>;
|
|
111
118
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -114,23 +121,26 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
114
121
|
}>, Readonly<{}>, {}, [Omit<{
|
|
115
122
|
readonly name: "parentA";
|
|
116
123
|
readonly path: "/parentA/[paramA]";
|
|
117
|
-
}, "meta" | "props"> & {
|
|
124
|
+
}, "meta" | "name" | "props"> & {
|
|
118
125
|
id: string;
|
|
126
|
+
name: "parentA";
|
|
119
127
|
props: undefined;
|
|
120
128
|
meta: Readonly<{}>;
|
|
121
129
|
}], []>>;
|
|
122
130
|
readonly name: "parentA.childA";
|
|
123
131
|
readonly path: "/childA/[?paramB]";
|
|
124
|
-
}, "meta" | "props"> & {
|
|
132
|
+
}, "meta" | "name" | "props"> & {
|
|
125
133
|
id: string;
|
|
134
|
+
name: "parentA.childA";
|
|
126
135
|
props: undefined;
|
|
127
136
|
meta: Readonly<{}>;
|
|
128
137
|
};
|
|
129
138
|
matches: [Omit<{
|
|
130
139
|
readonly name: "parentA";
|
|
131
140
|
readonly path: "/parentA/[paramA]";
|
|
132
|
-
}, "meta" | "props"> & {
|
|
141
|
+
}, "meta" | "name" | "props"> & {
|
|
133
142
|
id: string;
|
|
143
|
+
name: "parentA";
|
|
134
144
|
props: undefined;
|
|
135
145
|
meta: Readonly<{}>;
|
|
136
146
|
}, Omit<{
|
|
@@ -142,16 +152,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
142
152
|
matched: Omit<{
|
|
143
153
|
readonly name: "parentA";
|
|
144
154
|
readonly path: "/parentA/[paramA]";
|
|
145
|
-
}, "meta" | "props"> & {
|
|
155
|
+
}, "meta" | "name" | "props"> & {
|
|
146
156
|
id: string;
|
|
157
|
+
name: "parentA";
|
|
147
158
|
props: undefined;
|
|
148
159
|
meta: Readonly<{}>;
|
|
149
160
|
};
|
|
150
161
|
matches: [Omit<{
|
|
151
162
|
readonly name: "parentA";
|
|
152
163
|
readonly path: "/parentA/[paramA]";
|
|
153
|
-
}, "meta" | "props"> & {
|
|
164
|
+
}, "meta" | "name" | "props"> & {
|
|
154
165
|
id: string;
|
|
166
|
+
name: "parentA";
|
|
155
167
|
props: undefined;
|
|
156
168
|
meta: Readonly<{}>;
|
|
157
169
|
}];
|
|
@@ -168,8 +180,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
168
180
|
}>, Readonly<{}>, {}, [Omit<{
|
|
169
181
|
readonly name: "parentA";
|
|
170
182
|
readonly path: "/parentA/[paramA]";
|
|
171
|
-
}, "meta" | "props"> & {
|
|
183
|
+
}, "meta" | "name" | "props"> & {
|
|
172
184
|
id: string;
|
|
185
|
+
name: "parentA";
|
|
173
186
|
props: undefined;
|
|
174
187
|
meta: Readonly<{}>;
|
|
175
188
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -178,15 +191,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
178
191
|
}>, Readonly<{}>, {}, [Omit<{
|
|
179
192
|
readonly name: "parentA";
|
|
180
193
|
readonly path: "/parentA/[paramA]";
|
|
181
|
-
}, "meta" | "props"> & {
|
|
194
|
+
}, "meta" | "name" | "props"> & {
|
|
182
195
|
id: string;
|
|
196
|
+
name: "parentA";
|
|
183
197
|
props: undefined;
|
|
184
198
|
meta: Readonly<{}>;
|
|
185
199
|
}], []>>;
|
|
186
200
|
readonly name: "parentA.childA";
|
|
187
201
|
readonly path: "/childA/[?paramB]";
|
|
188
|
-
}, "meta" | "props"> & {
|
|
202
|
+
}, "meta" | "name" | "props"> & {
|
|
189
203
|
id: string;
|
|
204
|
+
name: "parentA.childA";
|
|
190
205
|
props: undefined;
|
|
191
206
|
meta: Readonly<{}>;
|
|
192
207
|
}];
|
|
@@ -211,8 +226,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
211
226
|
}>, Readonly<{}>, {}, [Omit<{
|
|
212
227
|
readonly name: "parentA";
|
|
213
228
|
readonly path: "/parentA/[paramA]";
|
|
214
|
-
}, "meta" | "props"> & {
|
|
229
|
+
}, "meta" | "name" | "props"> & {
|
|
215
230
|
id: string;
|
|
231
|
+
name: "parentA";
|
|
216
232
|
props: undefined;
|
|
217
233
|
meta: Readonly<{}>;
|
|
218
234
|
}, Omit<{
|
|
@@ -224,16 +240,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
224
240
|
matched: Omit<{
|
|
225
241
|
readonly name: "parentA";
|
|
226
242
|
readonly path: "/parentA/[paramA]";
|
|
227
|
-
}, "meta" | "props"> & {
|
|
243
|
+
}, "meta" | "name" | "props"> & {
|
|
228
244
|
id: string;
|
|
245
|
+
name: "parentA";
|
|
229
246
|
props: undefined;
|
|
230
247
|
meta: Readonly<{}>;
|
|
231
248
|
};
|
|
232
249
|
matches: [Omit<{
|
|
233
250
|
readonly name: "parentA";
|
|
234
251
|
readonly path: "/parentA/[paramA]";
|
|
235
|
-
}, "meta" | "props"> & {
|
|
252
|
+
}, "meta" | "name" | "props"> & {
|
|
236
253
|
id: string;
|
|
254
|
+
name: "parentA";
|
|
237
255
|
props: undefined;
|
|
238
256
|
meta: Readonly<{}>;
|
|
239
257
|
}];
|
|
@@ -250,8 +268,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
250
268
|
}>, Readonly<{}>, {}, [Omit<{
|
|
251
269
|
readonly name: "parentA";
|
|
252
270
|
readonly path: "/parentA/[paramA]";
|
|
253
|
-
}, "meta" | "props"> & {
|
|
271
|
+
}, "meta" | "name" | "props"> & {
|
|
254
272
|
id: string;
|
|
273
|
+
name: "parentA";
|
|
255
274
|
props: undefined;
|
|
256
275
|
meta: Readonly<{}>;
|
|
257
276
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -260,15 +279,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
260
279
|
}>, Readonly<{}>, {}, [Omit<{
|
|
261
280
|
readonly name: "parentA";
|
|
262
281
|
readonly path: "/parentA/[paramA]";
|
|
263
|
-
}, "meta" | "props"> & {
|
|
282
|
+
}, "meta" | "name" | "props"> & {
|
|
264
283
|
id: string;
|
|
284
|
+
name: "parentA";
|
|
265
285
|
props: undefined;
|
|
266
286
|
meta: Readonly<{}>;
|
|
267
287
|
}], []>>;
|
|
268
288
|
readonly name: "parentA.childA";
|
|
269
289
|
readonly path: "/childA/[?paramB]";
|
|
270
|
-
}, "meta" | "props"> & {
|
|
290
|
+
}, "meta" | "name" | "props"> & {
|
|
271
291
|
id: string;
|
|
292
|
+
name: "parentA.childA";
|
|
272
293
|
props: undefined;
|
|
273
294
|
meta: Readonly<{}>;
|
|
274
295
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA.childA", import('../main').Url<{
|
|
@@ -285,8 +306,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
285
306
|
}>, Readonly<{}>, {}, [Omit<{
|
|
286
307
|
readonly name: "parentA";
|
|
287
308
|
readonly path: "/parentA/[paramA]";
|
|
288
|
-
}, "meta" | "props"> & {
|
|
309
|
+
}, "meta" | "name" | "props"> & {
|
|
289
310
|
id: string;
|
|
311
|
+
name: "parentA";
|
|
290
312
|
props: undefined;
|
|
291
313
|
meta: Readonly<{}>;
|
|
292
314
|
}, Omit<{
|
|
@@ -298,16 +320,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
298
320
|
matched: Omit<{
|
|
299
321
|
readonly name: "parentA";
|
|
300
322
|
readonly path: "/parentA/[paramA]";
|
|
301
|
-
}, "meta" | "props"> & {
|
|
323
|
+
}, "meta" | "name" | "props"> & {
|
|
302
324
|
id: string;
|
|
325
|
+
name: "parentA";
|
|
303
326
|
props: undefined;
|
|
304
327
|
meta: Readonly<{}>;
|
|
305
328
|
};
|
|
306
329
|
matches: [Omit<{
|
|
307
330
|
readonly name: "parentA";
|
|
308
331
|
readonly path: "/parentA/[paramA]";
|
|
309
|
-
}, "meta" | "props"> & {
|
|
332
|
+
}, "meta" | "name" | "props"> & {
|
|
310
333
|
id: string;
|
|
334
|
+
name: "parentA";
|
|
311
335
|
props: undefined;
|
|
312
336
|
meta: Readonly<{}>;
|
|
313
337
|
}];
|
|
@@ -324,8 +348,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
324
348
|
}>, Readonly<{}>, {}, [Omit<{
|
|
325
349
|
readonly name: "parentA";
|
|
326
350
|
readonly path: "/parentA/[paramA]";
|
|
327
|
-
}, "meta" | "props"> & {
|
|
351
|
+
}, "meta" | "name" | "props"> & {
|
|
328
352
|
id: string;
|
|
353
|
+
name: "parentA";
|
|
329
354
|
props: undefined;
|
|
330
355
|
meta: Readonly<{}>;
|
|
331
356
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -334,15 +359,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
334
359
|
}>, Readonly<{}>, {}, [Omit<{
|
|
335
360
|
readonly name: "parentA";
|
|
336
361
|
readonly path: "/parentA/[paramA]";
|
|
337
|
-
}, "meta" | "props"> & {
|
|
362
|
+
}, "meta" | "name" | "props"> & {
|
|
338
363
|
id: string;
|
|
364
|
+
name: "parentA";
|
|
339
365
|
props: undefined;
|
|
340
366
|
meta: Readonly<{}>;
|
|
341
367
|
}], []>>;
|
|
342
368
|
readonly name: "parentA.childA";
|
|
343
369
|
readonly path: "/childA/[?paramB]";
|
|
344
|
-
}, "meta" | "props"> & {
|
|
370
|
+
}, "meta" | "name" | "props"> & {
|
|
345
371
|
id: string;
|
|
372
|
+
name: "parentA.childA";
|
|
346
373
|
props: undefined;
|
|
347
374
|
meta: Readonly<{}>;
|
|
348
375
|
}], []>>, import('../main').Url<{
|
|
@@ -367,16 +394,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
367
394
|
matched: Omit<{
|
|
368
395
|
readonly name: "parentA";
|
|
369
396
|
readonly path: "/parentA/[paramA]";
|
|
370
|
-
}, "meta" | "props"> & {
|
|
397
|
+
}, "meta" | "name" | "props"> & {
|
|
371
398
|
id: string;
|
|
399
|
+
name: "parentA";
|
|
372
400
|
props: undefined;
|
|
373
401
|
meta: Readonly<{}>;
|
|
374
402
|
};
|
|
375
403
|
matches: [Omit<{
|
|
376
404
|
readonly name: "parentA";
|
|
377
405
|
readonly path: "/parentA/[paramA]";
|
|
378
|
-
}, "meta" | "props"> & {
|
|
406
|
+
}, "meta" | "name" | "props"> & {
|
|
379
407
|
id: string;
|
|
408
|
+
name: "parentA";
|
|
380
409
|
props: undefined;
|
|
381
410
|
meta: Readonly<{}>;
|
|
382
411
|
}];
|
|
@@ -393,8 +422,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
393
422
|
}>, Readonly<{}>, {}, [Omit<{
|
|
394
423
|
readonly name: "parentA";
|
|
395
424
|
readonly path: "/parentA/[paramA]";
|
|
396
|
-
}, "meta" | "props"> & {
|
|
425
|
+
}, "meta" | "name" | "props"> & {
|
|
397
426
|
id: string;
|
|
427
|
+
name: "parentA";
|
|
398
428
|
props: undefined;
|
|
399
429
|
meta: Readonly<{}>;
|
|
400
430
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -403,8 +433,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
403
433
|
}>, Readonly<{}>, {}, [Omit<{
|
|
404
434
|
readonly name: "parentA";
|
|
405
435
|
readonly path: "/parentA/[paramA]";
|
|
406
|
-
}, "meta" | "props"> & {
|
|
436
|
+
}, "meta" | "name" | "props"> & {
|
|
407
437
|
id: string;
|
|
438
|
+
name: "parentA";
|
|
408
439
|
props: undefined;
|
|
409
440
|
meta: Readonly<{}>;
|
|
410
441
|
}], []>>;
|
|
@@ -413,16 +444,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
413
444
|
readonly component: {
|
|
414
445
|
template: string;
|
|
415
446
|
};
|
|
416
|
-
}, "meta" | "props"> & {
|
|
447
|
+
}, "meta" | "name" | "props"> & {
|
|
417
448
|
id: string;
|
|
449
|
+
name: "parentA.childB";
|
|
418
450
|
props: undefined;
|
|
419
451
|
meta: Readonly<{}>;
|
|
420
452
|
};
|
|
421
453
|
matches: [Omit<{
|
|
422
454
|
readonly name: "parentA";
|
|
423
455
|
readonly path: "/parentA/[paramA]";
|
|
424
|
-
}, "meta" | "props"> & {
|
|
456
|
+
}, "meta" | "name" | "props"> & {
|
|
425
457
|
id: string;
|
|
458
|
+
name: "parentA";
|
|
426
459
|
props: undefined;
|
|
427
460
|
meta: Readonly<{}>;
|
|
428
461
|
}, Omit<{
|
|
@@ -434,16 +467,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
434
467
|
matched: Omit<{
|
|
435
468
|
readonly name: "parentA";
|
|
436
469
|
readonly path: "/parentA/[paramA]";
|
|
437
|
-
}, "meta" | "props"> & {
|
|
470
|
+
}, "meta" | "name" | "props"> & {
|
|
438
471
|
id: string;
|
|
472
|
+
name: "parentA";
|
|
439
473
|
props: undefined;
|
|
440
474
|
meta: Readonly<{}>;
|
|
441
475
|
};
|
|
442
476
|
matches: [Omit<{
|
|
443
477
|
readonly name: "parentA";
|
|
444
478
|
readonly path: "/parentA/[paramA]";
|
|
445
|
-
}, "meta" | "props"> & {
|
|
479
|
+
}, "meta" | "name" | "props"> & {
|
|
446
480
|
id: string;
|
|
481
|
+
name: "parentA";
|
|
447
482
|
props: undefined;
|
|
448
483
|
meta: Readonly<{}>;
|
|
449
484
|
}];
|
|
@@ -460,8 +495,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
460
495
|
}>, Readonly<{}>, {}, [Omit<{
|
|
461
496
|
readonly name: "parentA";
|
|
462
497
|
readonly path: "/parentA/[paramA]";
|
|
463
|
-
}, "meta" | "props"> & {
|
|
498
|
+
}, "meta" | "name" | "props"> & {
|
|
464
499
|
id: string;
|
|
500
|
+
name: "parentA";
|
|
465
501
|
props: undefined;
|
|
466
502
|
meta: Readonly<{}>;
|
|
467
503
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -470,8 +506,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
470
506
|
}>, Readonly<{}>, {}, [Omit<{
|
|
471
507
|
readonly name: "parentA";
|
|
472
508
|
readonly path: "/parentA/[paramA]";
|
|
473
|
-
}, "meta" | "props"> & {
|
|
509
|
+
}, "meta" | "name" | "props"> & {
|
|
474
510
|
id: string;
|
|
511
|
+
name: "parentA";
|
|
475
512
|
props: undefined;
|
|
476
513
|
meta: Readonly<{}>;
|
|
477
514
|
}], []>>;
|
|
@@ -480,8 +517,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
480
517
|
readonly component: {
|
|
481
518
|
template: string;
|
|
482
519
|
};
|
|
483
|
-
}, "meta" | "props"> & {
|
|
520
|
+
}, "meta" | "name" | "props"> & {
|
|
484
521
|
id: string;
|
|
522
|
+
name: "parentA.childB";
|
|
485
523
|
props: undefined;
|
|
486
524
|
meta: Readonly<{}>;
|
|
487
525
|
}];
|
|
@@ -506,8 +544,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
506
544
|
}>, Readonly<{}>, {}, [Omit<{
|
|
507
545
|
readonly name: "parentA";
|
|
508
546
|
readonly path: "/parentA/[paramA]";
|
|
509
|
-
}, "meta" | "props"> & {
|
|
547
|
+
}, "meta" | "name" | "props"> & {
|
|
510
548
|
id: string;
|
|
549
|
+
name: "parentA";
|
|
511
550
|
props: undefined;
|
|
512
551
|
meta: Readonly<{}>;
|
|
513
552
|
}, Omit<{
|
|
@@ -519,16 +558,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
519
558
|
matched: Omit<{
|
|
520
559
|
readonly name: "parentA";
|
|
521
560
|
readonly path: "/parentA/[paramA]";
|
|
522
|
-
}, "meta" | "props"> & {
|
|
561
|
+
}, "meta" | "name" | "props"> & {
|
|
523
562
|
id: string;
|
|
563
|
+
name: "parentA";
|
|
524
564
|
props: undefined;
|
|
525
565
|
meta: Readonly<{}>;
|
|
526
566
|
};
|
|
527
567
|
matches: [Omit<{
|
|
528
568
|
readonly name: "parentA";
|
|
529
569
|
readonly path: "/parentA/[paramA]";
|
|
530
|
-
}, "meta" | "props"> & {
|
|
570
|
+
}, "meta" | "name" | "props"> & {
|
|
531
571
|
id: string;
|
|
572
|
+
name: "parentA";
|
|
532
573
|
props: undefined;
|
|
533
574
|
meta: Readonly<{}>;
|
|
534
575
|
}];
|
|
@@ -545,8 +586,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
545
586
|
}>, Readonly<{}>, {}, [Omit<{
|
|
546
587
|
readonly name: "parentA";
|
|
547
588
|
readonly path: "/parentA/[paramA]";
|
|
548
|
-
}, "meta" | "props"> & {
|
|
589
|
+
}, "meta" | "name" | "props"> & {
|
|
549
590
|
id: string;
|
|
591
|
+
name: "parentA";
|
|
550
592
|
props: undefined;
|
|
551
593
|
meta: Readonly<{}>;
|
|
552
594
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -555,8 +597,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
555
597
|
}>, Readonly<{}>, {}, [Omit<{
|
|
556
598
|
readonly name: "parentA";
|
|
557
599
|
readonly path: "/parentA/[paramA]";
|
|
558
|
-
}, "meta" | "props"> & {
|
|
600
|
+
}, "meta" | "name" | "props"> & {
|
|
559
601
|
id: string;
|
|
602
|
+
name: "parentA";
|
|
560
603
|
props: undefined;
|
|
561
604
|
meta: Readonly<{}>;
|
|
562
605
|
}], []>>;
|
|
@@ -565,8 +608,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
565
608
|
readonly component: {
|
|
566
609
|
template: string;
|
|
567
610
|
};
|
|
568
|
-
}, "meta" | "props"> & {
|
|
611
|
+
}, "meta" | "name" | "props"> & {
|
|
569
612
|
id: string;
|
|
613
|
+
name: "parentA.childB";
|
|
570
614
|
props: undefined;
|
|
571
615
|
meta: Readonly<{}>;
|
|
572
616
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA.childB", import('../main').Url<{
|
|
@@ -583,8 +627,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
583
627
|
}>, Readonly<{}>, {}, [Omit<{
|
|
584
628
|
readonly name: "parentA";
|
|
585
629
|
readonly path: "/parentA/[paramA]";
|
|
586
|
-
}, "meta" | "props"> & {
|
|
630
|
+
}, "meta" | "name" | "props"> & {
|
|
587
631
|
id: string;
|
|
632
|
+
name: "parentA";
|
|
588
633
|
props: undefined;
|
|
589
634
|
meta: Readonly<{}>;
|
|
590
635
|
}, Omit<{
|
|
@@ -596,16 +641,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
596
641
|
matched: Omit<{
|
|
597
642
|
readonly name: "parentA";
|
|
598
643
|
readonly path: "/parentA/[paramA]";
|
|
599
|
-
}, "meta" | "props"> & {
|
|
644
|
+
}, "meta" | "name" | "props"> & {
|
|
600
645
|
id: string;
|
|
646
|
+
name: "parentA";
|
|
601
647
|
props: undefined;
|
|
602
648
|
meta: Readonly<{}>;
|
|
603
649
|
};
|
|
604
650
|
matches: [Omit<{
|
|
605
651
|
readonly name: "parentA";
|
|
606
652
|
readonly path: "/parentA/[paramA]";
|
|
607
|
-
}, "meta" | "props"> & {
|
|
653
|
+
}, "meta" | "name" | "props"> & {
|
|
608
654
|
id: string;
|
|
655
|
+
name: "parentA";
|
|
609
656
|
props: undefined;
|
|
610
657
|
meta: Readonly<{}>;
|
|
611
658
|
}];
|
|
@@ -622,8 +669,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
622
669
|
}>, Readonly<{}>, {}, [Omit<{
|
|
623
670
|
readonly name: "parentA";
|
|
624
671
|
readonly path: "/parentA/[paramA]";
|
|
625
|
-
}, "meta" | "props"> & {
|
|
672
|
+
}, "meta" | "name" | "props"> & {
|
|
626
673
|
id: string;
|
|
674
|
+
name: "parentA";
|
|
627
675
|
props: undefined;
|
|
628
676
|
meta: Readonly<{}>;
|
|
629
677
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -632,8 +680,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
632
680
|
}>, Readonly<{}>, {}, [Omit<{
|
|
633
681
|
readonly name: "parentA";
|
|
634
682
|
readonly path: "/parentA/[paramA]";
|
|
635
|
-
}, "meta" | "props"> & {
|
|
683
|
+
}, "meta" | "name" | "props"> & {
|
|
636
684
|
id: string;
|
|
685
|
+
name: "parentA";
|
|
637
686
|
props: undefined;
|
|
638
687
|
meta: Readonly<{}>;
|
|
639
688
|
}], []>>;
|
|
@@ -642,8 +691,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
642
691
|
readonly component: {
|
|
643
692
|
template: string;
|
|
644
693
|
};
|
|
645
|
-
}, "meta" | "props"> & {
|
|
694
|
+
}, "meta" | "name" | "props"> & {
|
|
646
695
|
id: string;
|
|
696
|
+
name: "parentA.childB";
|
|
647
697
|
props: undefined;
|
|
648
698
|
meta: Readonly<{}>;
|
|
649
699
|
}], []>>, import('../main').Url<{
|
|
@@ -687,16 +737,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
687
737
|
matched: Omit<{
|
|
688
738
|
readonly name: "parentA";
|
|
689
739
|
readonly path: "/parentA/[paramA]";
|
|
690
|
-
}, "meta" | "props"> & {
|
|
740
|
+
}, "meta" | "name" | "props"> & {
|
|
691
741
|
id: string;
|
|
742
|
+
name: "parentA";
|
|
692
743
|
props: undefined;
|
|
693
744
|
meta: Readonly<{}>;
|
|
694
745
|
};
|
|
695
746
|
matches: [Omit<{
|
|
696
747
|
readonly name: "parentA";
|
|
697
748
|
readonly path: "/parentA/[paramA]";
|
|
698
|
-
}, "meta" | "props"> & {
|
|
749
|
+
}, "meta" | "name" | "props"> & {
|
|
699
750
|
id: string;
|
|
751
|
+
name: "parentA";
|
|
700
752
|
props: undefined;
|
|
701
753
|
meta: Readonly<{}>;
|
|
702
754
|
}];
|
|
@@ -713,8 +765,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
713
765
|
}>, Readonly<{}>, {}, [Omit<{
|
|
714
766
|
readonly name: "parentA";
|
|
715
767
|
readonly path: "/parentA/[paramA]";
|
|
716
|
-
}, "meta" | "props"> & {
|
|
768
|
+
}, "meta" | "name" | "props"> & {
|
|
717
769
|
id: string;
|
|
770
|
+
name: "parentA";
|
|
718
771
|
props: undefined;
|
|
719
772
|
meta: Readonly<{}>;
|
|
720
773
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -723,23 +776,26 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
723
776
|
}>, Readonly<{}>, {}, [Omit<{
|
|
724
777
|
readonly name: "parentA";
|
|
725
778
|
readonly path: "/parentA/[paramA]";
|
|
726
|
-
}, "meta" | "props"> & {
|
|
779
|
+
}, "meta" | "name" | "props"> & {
|
|
727
780
|
id: string;
|
|
781
|
+
name: "parentA";
|
|
728
782
|
props: undefined;
|
|
729
783
|
meta: Readonly<{}>;
|
|
730
784
|
}], []>>;
|
|
731
785
|
readonly name: "parentA.childA";
|
|
732
786
|
readonly path: "/childA/[?paramB]";
|
|
733
|
-
}, "meta" | "props"> & {
|
|
787
|
+
}, "meta" | "name" | "props"> & {
|
|
734
788
|
id: string;
|
|
789
|
+
name: "parentA.childA";
|
|
735
790
|
props: undefined;
|
|
736
791
|
meta: Readonly<{}>;
|
|
737
792
|
};
|
|
738
793
|
matches: [Omit<{
|
|
739
794
|
readonly name: "parentA";
|
|
740
795
|
readonly path: "/parentA/[paramA]";
|
|
741
|
-
}, "meta" | "props"> & {
|
|
796
|
+
}, "meta" | "name" | "props"> & {
|
|
742
797
|
id: string;
|
|
798
|
+
name: "parentA";
|
|
743
799
|
props: undefined;
|
|
744
800
|
meta: Readonly<{}>;
|
|
745
801
|
}, Omit<{
|
|
@@ -751,16 +807,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
751
807
|
matched: Omit<{
|
|
752
808
|
readonly name: "parentA";
|
|
753
809
|
readonly path: "/parentA/[paramA]";
|
|
754
|
-
}, "meta" | "props"> & {
|
|
810
|
+
}, "meta" | "name" | "props"> & {
|
|
755
811
|
id: string;
|
|
812
|
+
name: "parentA";
|
|
756
813
|
props: undefined;
|
|
757
814
|
meta: Readonly<{}>;
|
|
758
815
|
};
|
|
759
816
|
matches: [Omit<{
|
|
760
817
|
readonly name: "parentA";
|
|
761
818
|
readonly path: "/parentA/[paramA]";
|
|
762
|
-
}, "meta" | "props"> & {
|
|
819
|
+
}, "meta" | "name" | "props"> & {
|
|
763
820
|
id: string;
|
|
821
|
+
name: "parentA";
|
|
764
822
|
props: undefined;
|
|
765
823
|
meta: Readonly<{}>;
|
|
766
824
|
}];
|
|
@@ -777,8 +835,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
777
835
|
}>, Readonly<{}>, {}, [Omit<{
|
|
778
836
|
readonly name: "parentA";
|
|
779
837
|
readonly path: "/parentA/[paramA]";
|
|
780
|
-
}, "meta" | "props"> & {
|
|
838
|
+
}, "meta" | "name" | "props"> & {
|
|
781
839
|
id: string;
|
|
840
|
+
name: "parentA";
|
|
782
841
|
props: undefined;
|
|
783
842
|
meta: Readonly<{}>;
|
|
784
843
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -787,15 +846,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
787
846
|
}>, Readonly<{}>, {}, [Omit<{
|
|
788
847
|
readonly name: "parentA";
|
|
789
848
|
readonly path: "/parentA/[paramA]";
|
|
790
|
-
}, "meta" | "props"> & {
|
|
849
|
+
}, "meta" | "name" | "props"> & {
|
|
791
850
|
id: string;
|
|
851
|
+
name: "parentA";
|
|
792
852
|
props: undefined;
|
|
793
853
|
meta: Readonly<{}>;
|
|
794
854
|
}], []>>;
|
|
795
855
|
readonly name: "parentA.childA";
|
|
796
856
|
readonly path: "/childA/[?paramB]";
|
|
797
|
-
}, "meta" | "props"> & {
|
|
857
|
+
}, "meta" | "name" | "props"> & {
|
|
798
858
|
id: string;
|
|
859
|
+
name: "parentA.childA";
|
|
799
860
|
props: undefined;
|
|
800
861
|
meta: Readonly<{}>;
|
|
801
862
|
}];
|
|
@@ -820,8 +881,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
820
881
|
}>, Readonly<{}>, {}, [Omit<{
|
|
821
882
|
readonly name: "parentA";
|
|
822
883
|
readonly path: "/parentA/[paramA]";
|
|
823
|
-
}, "meta" | "props"> & {
|
|
884
|
+
}, "meta" | "name" | "props"> & {
|
|
824
885
|
id: string;
|
|
886
|
+
name: "parentA";
|
|
825
887
|
props: undefined;
|
|
826
888
|
meta: Readonly<{}>;
|
|
827
889
|
}, Omit<{
|
|
@@ -833,16 +895,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
833
895
|
matched: Omit<{
|
|
834
896
|
readonly name: "parentA";
|
|
835
897
|
readonly path: "/parentA/[paramA]";
|
|
836
|
-
}, "meta" | "props"> & {
|
|
898
|
+
}, "meta" | "name" | "props"> & {
|
|
837
899
|
id: string;
|
|
900
|
+
name: "parentA";
|
|
838
901
|
props: undefined;
|
|
839
902
|
meta: Readonly<{}>;
|
|
840
903
|
};
|
|
841
904
|
matches: [Omit<{
|
|
842
905
|
readonly name: "parentA";
|
|
843
906
|
readonly path: "/parentA/[paramA]";
|
|
844
|
-
}, "meta" | "props"> & {
|
|
907
|
+
}, "meta" | "name" | "props"> & {
|
|
845
908
|
id: string;
|
|
909
|
+
name: "parentA";
|
|
846
910
|
props: undefined;
|
|
847
911
|
meta: Readonly<{}>;
|
|
848
912
|
}];
|
|
@@ -859,8 +923,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
859
923
|
}>, Readonly<{}>, {}, [Omit<{
|
|
860
924
|
readonly name: "parentA";
|
|
861
925
|
readonly path: "/parentA/[paramA]";
|
|
862
|
-
}, "meta" | "props"> & {
|
|
926
|
+
}, "meta" | "name" | "props"> & {
|
|
863
927
|
id: string;
|
|
928
|
+
name: "parentA";
|
|
864
929
|
props: undefined;
|
|
865
930
|
meta: Readonly<{}>;
|
|
866
931
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -869,15 +934,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
869
934
|
}>, Readonly<{}>, {}, [Omit<{
|
|
870
935
|
readonly name: "parentA";
|
|
871
936
|
readonly path: "/parentA/[paramA]";
|
|
872
|
-
}, "meta" | "props"> & {
|
|
937
|
+
}, "meta" | "name" | "props"> & {
|
|
873
938
|
id: string;
|
|
939
|
+
name: "parentA";
|
|
874
940
|
props: undefined;
|
|
875
941
|
meta: Readonly<{}>;
|
|
876
942
|
}], []>>;
|
|
877
943
|
readonly name: "parentA.childA";
|
|
878
944
|
readonly path: "/childA/[?paramB]";
|
|
879
|
-
}, "meta" | "props"> & {
|
|
945
|
+
}, "meta" | "name" | "props"> & {
|
|
880
946
|
id: string;
|
|
947
|
+
name: "parentA.childA";
|
|
881
948
|
props: undefined;
|
|
882
949
|
meta: Readonly<{}>;
|
|
883
950
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA.childA", import('../main').Url<{
|
|
@@ -894,8 +961,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
894
961
|
}>, Readonly<{}>, {}, [Omit<{
|
|
895
962
|
readonly name: "parentA";
|
|
896
963
|
readonly path: "/parentA/[paramA]";
|
|
897
|
-
}, "meta" | "props"> & {
|
|
964
|
+
}, "meta" | "name" | "props"> & {
|
|
898
965
|
id: string;
|
|
966
|
+
name: "parentA";
|
|
899
967
|
props: undefined;
|
|
900
968
|
meta: Readonly<{}>;
|
|
901
969
|
}, Omit<{
|
|
@@ -907,16 +975,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
907
975
|
matched: Omit<{
|
|
908
976
|
readonly name: "parentA";
|
|
909
977
|
readonly path: "/parentA/[paramA]";
|
|
910
|
-
}, "meta" | "props"> & {
|
|
978
|
+
}, "meta" | "name" | "props"> & {
|
|
911
979
|
id: string;
|
|
980
|
+
name: "parentA";
|
|
912
981
|
props: undefined;
|
|
913
982
|
meta: Readonly<{}>;
|
|
914
983
|
};
|
|
915
984
|
matches: [Omit<{
|
|
916
985
|
readonly name: "parentA";
|
|
917
986
|
readonly path: "/parentA/[paramA]";
|
|
918
|
-
}, "meta" | "props"> & {
|
|
987
|
+
}, "meta" | "name" | "props"> & {
|
|
919
988
|
id: string;
|
|
989
|
+
name: "parentA";
|
|
920
990
|
props: undefined;
|
|
921
991
|
meta: Readonly<{}>;
|
|
922
992
|
}];
|
|
@@ -933,8 +1003,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
933
1003
|
}>, Readonly<{}>, {}, [Omit<{
|
|
934
1004
|
readonly name: "parentA";
|
|
935
1005
|
readonly path: "/parentA/[paramA]";
|
|
936
|
-
}, "meta" | "props"> & {
|
|
1006
|
+
}, "meta" | "name" | "props"> & {
|
|
937
1007
|
id: string;
|
|
1008
|
+
name: "parentA";
|
|
938
1009
|
props: undefined;
|
|
939
1010
|
meta: Readonly<{}>;
|
|
940
1011
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -943,15 +1014,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
943
1014
|
}>, Readonly<{}>, {}, [Omit<{
|
|
944
1015
|
readonly name: "parentA";
|
|
945
1016
|
readonly path: "/parentA/[paramA]";
|
|
946
|
-
}, "meta" | "props"> & {
|
|
1017
|
+
}, "meta" | "name" | "props"> & {
|
|
947
1018
|
id: string;
|
|
1019
|
+
name: "parentA";
|
|
948
1020
|
props: undefined;
|
|
949
1021
|
meta: Readonly<{}>;
|
|
950
1022
|
}], []>>;
|
|
951
1023
|
readonly name: "parentA.childA";
|
|
952
1024
|
readonly path: "/childA/[?paramB]";
|
|
953
|
-
}, "meta" | "props"> & {
|
|
1025
|
+
}, "meta" | "name" | "props"> & {
|
|
954
1026
|
id: string;
|
|
1027
|
+
name: "parentA.childA";
|
|
955
1028
|
props: undefined;
|
|
956
1029
|
meta: Readonly<{}>;
|
|
957
1030
|
}], []>>;
|
|
@@ -960,16 +1033,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
960
1033
|
readonly component: {
|
|
961
1034
|
template: string;
|
|
962
1035
|
};
|
|
963
|
-
}, "meta" | "props"> & {
|
|
1036
|
+
}, "meta" | "name" | "props"> & {
|
|
964
1037
|
id: string;
|
|
1038
|
+
name: "parentA.childA.grandChildA";
|
|
965
1039
|
props: undefined;
|
|
966
1040
|
meta: Readonly<{}>;
|
|
967
1041
|
};
|
|
968
1042
|
matches: [Omit<{
|
|
969
1043
|
readonly name: "parentA";
|
|
970
1044
|
readonly path: "/parentA/[paramA]";
|
|
971
|
-
}, "meta" | "props"> & {
|
|
1045
|
+
}, "meta" | "name" | "props"> & {
|
|
972
1046
|
id: string;
|
|
1047
|
+
name: "parentA";
|
|
973
1048
|
props: undefined;
|
|
974
1049
|
meta: Readonly<{}>;
|
|
975
1050
|
}, Omit<{
|
|
@@ -981,16 +1056,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
981
1056
|
matched: Omit<{
|
|
982
1057
|
readonly name: "parentA";
|
|
983
1058
|
readonly path: "/parentA/[paramA]";
|
|
984
|
-
}, "meta" | "props"> & {
|
|
1059
|
+
}, "meta" | "name" | "props"> & {
|
|
985
1060
|
id: string;
|
|
1061
|
+
name: "parentA";
|
|
986
1062
|
props: undefined;
|
|
987
1063
|
meta: Readonly<{}>;
|
|
988
1064
|
};
|
|
989
1065
|
matches: [Omit<{
|
|
990
1066
|
readonly name: "parentA";
|
|
991
1067
|
readonly path: "/parentA/[paramA]";
|
|
992
|
-
}, "meta" | "props"> & {
|
|
1068
|
+
}, "meta" | "name" | "props"> & {
|
|
993
1069
|
id: string;
|
|
1070
|
+
name: "parentA";
|
|
994
1071
|
props: undefined;
|
|
995
1072
|
meta: Readonly<{}>;
|
|
996
1073
|
}];
|
|
@@ -1007,8 +1084,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1007
1084
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1008
1085
|
readonly name: "parentA";
|
|
1009
1086
|
readonly path: "/parentA/[paramA]";
|
|
1010
|
-
}, "meta" | "props"> & {
|
|
1087
|
+
}, "meta" | "name" | "props"> & {
|
|
1011
1088
|
id: string;
|
|
1089
|
+
name: "parentA";
|
|
1012
1090
|
props: undefined;
|
|
1013
1091
|
meta: Readonly<{}>;
|
|
1014
1092
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1017,15 +1095,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1017
1095
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1018
1096
|
readonly name: "parentA";
|
|
1019
1097
|
readonly path: "/parentA/[paramA]";
|
|
1020
|
-
}, "meta" | "props"> & {
|
|
1098
|
+
}, "meta" | "name" | "props"> & {
|
|
1021
1099
|
id: string;
|
|
1100
|
+
name: "parentA";
|
|
1022
1101
|
props: undefined;
|
|
1023
1102
|
meta: Readonly<{}>;
|
|
1024
1103
|
}], []>>;
|
|
1025
1104
|
readonly name: "parentA.childA";
|
|
1026
1105
|
readonly path: "/childA/[?paramB]";
|
|
1027
|
-
}, "meta" | "props"> & {
|
|
1106
|
+
}, "meta" | "name" | "props"> & {
|
|
1028
1107
|
id: string;
|
|
1108
|
+
name: "parentA.childA";
|
|
1029
1109
|
props: undefined;
|
|
1030
1110
|
meta: Readonly<{}>;
|
|
1031
1111
|
}, Omit<{
|
|
@@ -1051,16 +1131,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1051
1131
|
matched: Omit<{
|
|
1052
1132
|
readonly name: "parentA";
|
|
1053
1133
|
readonly path: "/parentA/[paramA]";
|
|
1054
|
-
}, "meta" | "props"> & {
|
|
1134
|
+
}, "meta" | "name" | "props"> & {
|
|
1055
1135
|
id: string;
|
|
1136
|
+
name: "parentA";
|
|
1056
1137
|
props: undefined;
|
|
1057
1138
|
meta: Readonly<{}>;
|
|
1058
1139
|
};
|
|
1059
1140
|
matches: [Omit<{
|
|
1060
1141
|
readonly name: "parentA";
|
|
1061
1142
|
readonly path: "/parentA/[paramA]";
|
|
1062
|
-
}, "meta" | "props"> & {
|
|
1143
|
+
}, "meta" | "name" | "props"> & {
|
|
1063
1144
|
id: string;
|
|
1145
|
+
name: "parentA";
|
|
1064
1146
|
props: undefined;
|
|
1065
1147
|
meta: Readonly<{}>;
|
|
1066
1148
|
}];
|
|
@@ -1077,8 +1159,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1077
1159
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1078
1160
|
readonly name: "parentA";
|
|
1079
1161
|
readonly path: "/parentA/[paramA]";
|
|
1080
|
-
}, "meta" | "props"> & {
|
|
1162
|
+
}, "meta" | "name" | "props"> & {
|
|
1081
1163
|
id: string;
|
|
1164
|
+
name: "parentA";
|
|
1082
1165
|
props: undefined;
|
|
1083
1166
|
meta: Readonly<{}>;
|
|
1084
1167
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1087,23 +1170,26 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1087
1170
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1088
1171
|
readonly name: "parentA";
|
|
1089
1172
|
readonly path: "/parentA/[paramA]";
|
|
1090
|
-
}, "meta" | "props"> & {
|
|
1173
|
+
}, "meta" | "name" | "props"> & {
|
|
1091
1174
|
id: string;
|
|
1175
|
+
name: "parentA";
|
|
1092
1176
|
props: undefined;
|
|
1093
1177
|
meta: Readonly<{}>;
|
|
1094
1178
|
}], []>>;
|
|
1095
1179
|
readonly name: "parentA.childA";
|
|
1096
1180
|
readonly path: "/childA/[?paramB]";
|
|
1097
|
-
}, "meta" | "props"> & {
|
|
1181
|
+
}, "meta" | "name" | "props"> & {
|
|
1098
1182
|
id: string;
|
|
1183
|
+
name: "parentA.childA";
|
|
1099
1184
|
props: undefined;
|
|
1100
1185
|
meta: Readonly<{}>;
|
|
1101
1186
|
};
|
|
1102
1187
|
matches: [Omit<{
|
|
1103
1188
|
readonly name: "parentA";
|
|
1104
1189
|
readonly path: "/parentA/[paramA]";
|
|
1105
|
-
}, "meta" | "props"> & {
|
|
1190
|
+
}, "meta" | "name" | "props"> & {
|
|
1106
1191
|
id: string;
|
|
1192
|
+
name: "parentA";
|
|
1107
1193
|
props: undefined;
|
|
1108
1194
|
meta: Readonly<{}>;
|
|
1109
1195
|
}, Omit<{
|
|
@@ -1115,16 +1201,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1115
1201
|
matched: Omit<{
|
|
1116
1202
|
readonly name: "parentA";
|
|
1117
1203
|
readonly path: "/parentA/[paramA]";
|
|
1118
|
-
}, "meta" | "props"> & {
|
|
1204
|
+
}, "meta" | "name" | "props"> & {
|
|
1119
1205
|
id: string;
|
|
1206
|
+
name: "parentA";
|
|
1120
1207
|
props: undefined;
|
|
1121
1208
|
meta: Readonly<{}>;
|
|
1122
1209
|
};
|
|
1123
1210
|
matches: [Omit<{
|
|
1124
1211
|
readonly name: "parentA";
|
|
1125
1212
|
readonly path: "/parentA/[paramA]";
|
|
1126
|
-
}, "meta" | "props"> & {
|
|
1213
|
+
}, "meta" | "name" | "props"> & {
|
|
1127
1214
|
id: string;
|
|
1215
|
+
name: "parentA";
|
|
1128
1216
|
props: undefined;
|
|
1129
1217
|
meta: Readonly<{}>;
|
|
1130
1218
|
}];
|
|
@@ -1141,8 +1229,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1141
1229
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1142
1230
|
readonly name: "parentA";
|
|
1143
1231
|
readonly path: "/parentA/[paramA]";
|
|
1144
|
-
}, "meta" | "props"> & {
|
|
1232
|
+
}, "meta" | "name" | "props"> & {
|
|
1145
1233
|
id: string;
|
|
1234
|
+
name: "parentA";
|
|
1146
1235
|
props: undefined;
|
|
1147
1236
|
meta: Readonly<{}>;
|
|
1148
1237
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1151,15 +1240,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1151
1240
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1152
1241
|
readonly name: "parentA";
|
|
1153
1242
|
readonly path: "/parentA/[paramA]";
|
|
1154
|
-
}, "meta" | "props"> & {
|
|
1243
|
+
}, "meta" | "name" | "props"> & {
|
|
1155
1244
|
id: string;
|
|
1245
|
+
name: "parentA";
|
|
1156
1246
|
props: undefined;
|
|
1157
1247
|
meta: Readonly<{}>;
|
|
1158
1248
|
}], []>>;
|
|
1159
1249
|
readonly name: "parentA.childA";
|
|
1160
1250
|
readonly path: "/childA/[?paramB]";
|
|
1161
|
-
}, "meta" | "props"> & {
|
|
1251
|
+
}, "meta" | "name" | "props"> & {
|
|
1162
1252
|
id: string;
|
|
1253
|
+
name: "parentA.childA";
|
|
1163
1254
|
props: undefined;
|
|
1164
1255
|
meta: Readonly<{}>;
|
|
1165
1256
|
}];
|
|
@@ -1184,8 +1275,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1184
1275
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1185
1276
|
readonly name: "parentA";
|
|
1186
1277
|
readonly path: "/parentA/[paramA]";
|
|
1187
|
-
}, "meta" | "props"> & {
|
|
1278
|
+
}, "meta" | "name" | "props"> & {
|
|
1188
1279
|
id: string;
|
|
1280
|
+
name: "parentA";
|
|
1189
1281
|
props: undefined;
|
|
1190
1282
|
meta: Readonly<{}>;
|
|
1191
1283
|
}, Omit<{
|
|
@@ -1197,16 +1289,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1197
1289
|
matched: Omit<{
|
|
1198
1290
|
readonly name: "parentA";
|
|
1199
1291
|
readonly path: "/parentA/[paramA]";
|
|
1200
|
-
}, "meta" | "props"> & {
|
|
1292
|
+
}, "meta" | "name" | "props"> & {
|
|
1201
1293
|
id: string;
|
|
1294
|
+
name: "parentA";
|
|
1202
1295
|
props: undefined;
|
|
1203
1296
|
meta: Readonly<{}>;
|
|
1204
1297
|
};
|
|
1205
1298
|
matches: [Omit<{
|
|
1206
1299
|
readonly name: "parentA";
|
|
1207
1300
|
readonly path: "/parentA/[paramA]";
|
|
1208
|
-
}, "meta" | "props"> & {
|
|
1301
|
+
}, "meta" | "name" | "props"> & {
|
|
1209
1302
|
id: string;
|
|
1303
|
+
name: "parentA";
|
|
1210
1304
|
props: undefined;
|
|
1211
1305
|
meta: Readonly<{}>;
|
|
1212
1306
|
}];
|
|
@@ -1223,8 +1317,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1223
1317
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1224
1318
|
readonly name: "parentA";
|
|
1225
1319
|
readonly path: "/parentA/[paramA]";
|
|
1226
|
-
}, "meta" | "props"> & {
|
|
1320
|
+
}, "meta" | "name" | "props"> & {
|
|
1227
1321
|
id: string;
|
|
1322
|
+
name: "parentA";
|
|
1228
1323
|
props: undefined;
|
|
1229
1324
|
meta: Readonly<{}>;
|
|
1230
1325
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1233,15 +1328,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1233
1328
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1234
1329
|
readonly name: "parentA";
|
|
1235
1330
|
readonly path: "/parentA/[paramA]";
|
|
1236
|
-
}, "meta" | "props"> & {
|
|
1331
|
+
}, "meta" | "name" | "props"> & {
|
|
1237
1332
|
id: string;
|
|
1333
|
+
name: "parentA";
|
|
1238
1334
|
props: undefined;
|
|
1239
1335
|
meta: Readonly<{}>;
|
|
1240
1336
|
}], []>>;
|
|
1241
1337
|
readonly name: "parentA.childA";
|
|
1242
1338
|
readonly path: "/childA/[?paramB]";
|
|
1243
|
-
}, "meta" | "props"> & {
|
|
1339
|
+
}, "meta" | "name" | "props"> & {
|
|
1244
1340
|
id: string;
|
|
1341
|
+
name: "parentA.childA";
|
|
1245
1342
|
props: undefined;
|
|
1246
1343
|
meta: Readonly<{}>;
|
|
1247
1344
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA.childA", import('../main').Url<{
|
|
@@ -1258,8 +1355,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1258
1355
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1259
1356
|
readonly name: "parentA";
|
|
1260
1357
|
readonly path: "/parentA/[paramA]";
|
|
1261
|
-
}, "meta" | "props"> & {
|
|
1358
|
+
}, "meta" | "name" | "props"> & {
|
|
1262
1359
|
id: string;
|
|
1360
|
+
name: "parentA";
|
|
1263
1361
|
props: undefined;
|
|
1264
1362
|
meta: Readonly<{}>;
|
|
1265
1363
|
}, Omit<{
|
|
@@ -1271,16 +1369,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1271
1369
|
matched: Omit<{
|
|
1272
1370
|
readonly name: "parentA";
|
|
1273
1371
|
readonly path: "/parentA/[paramA]";
|
|
1274
|
-
}, "meta" | "props"> & {
|
|
1372
|
+
}, "meta" | "name" | "props"> & {
|
|
1275
1373
|
id: string;
|
|
1374
|
+
name: "parentA";
|
|
1276
1375
|
props: undefined;
|
|
1277
1376
|
meta: Readonly<{}>;
|
|
1278
1377
|
};
|
|
1279
1378
|
matches: [Omit<{
|
|
1280
1379
|
readonly name: "parentA";
|
|
1281
1380
|
readonly path: "/parentA/[paramA]";
|
|
1282
|
-
}, "meta" | "props"> & {
|
|
1381
|
+
}, "meta" | "name" | "props"> & {
|
|
1283
1382
|
id: string;
|
|
1383
|
+
name: "parentA";
|
|
1284
1384
|
props: undefined;
|
|
1285
1385
|
meta: Readonly<{}>;
|
|
1286
1386
|
}];
|
|
@@ -1297,8 +1397,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1297
1397
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1298
1398
|
readonly name: "parentA";
|
|
1299
1399
|
readonly path: "/parentA/[paramA]";
|
|
1300
|
-
}, "meta" | "props"> & {
|
|
1400
|
+
}, "meta" | "name" | "props"> & {
|
|
1301
1401
|
id: string;
|
|
1402
|
+
name: "parentA";
|
|
1302
1403
|
props: undefined;
|
|
1303
1404
|
meta: Readonly<{}>;
|
|
1304
1405
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1307,15 +1408,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1307
1408
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1308
1409
|
readonly name: "parentA";
|
|
1309
1410
|
readonly path: "/parentA/[paramA]";
|
|
1310
|
-
}, "meta" | "props"> & {
|
|
1411
|
+
}, "meta" | "name" | "props"> & {
|
|
1311
1412
|
id: string;
|
|
1413
|
+
name: "parentA";
|
|
1312
1414
|
props: undefined;
|
|
1313
1415
|
meta: Readonly<{}>;
|
|
1314
1416
|
}], []>>;
|
|
1315
1417
|
readonly name: "parentA.childA";
|
|
1316
1418
|
readonly path: "/childA/[?paramB]";
|
|
1317
|
-
}, "meta" | "props"> & {
|
|
1419
|
+
}, "meta" | "name" | "props"> & {
|
|
1318
1420
|
id: string;
|
|
1421
|
+
name: "parentA.childA";
|
|
1319
1422
|
props: undefined;
|
|
1320
1423
|
meta: Readonly<{}>;
|
|
1321
1424
|
}], []>>;
|
|
@@ -1324,8 +1427,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1324
1427
|
readonly component: {
|
|
1325
1428
|
template: string;
|
|
1326
1429
|
};
|
|
1327
|
-
}, "meta" | "props"> & {
|
|
1430
|
+
}, "meta" | "name" | "props"> & {
|
|
1328
1431
|
id: string;
|
|
1432
|
+
name: "parentA.childA.grandChildA";
|
|
1329
1433
|
props: undefined;
|
|
1330
1434
|
meta: Readonly<{}>;
|
|
1331
1435
|
}];
|
|
@@ -1355,8 +1459,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1355
1459
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1356
1460
|
readonly name: "parentA";
|
|
1357
1461
|
readonly path: "/parentA/[paramA]";
|
|
1358
|
-
}, "meta" | "props"> & {
|
|
1462
|
+
}, "meta" | "name" | "props"> & {
|
|
1359
1463
|
id: string;
|
|
1464
|
+
name: "parentA";
|
|
1360
1465
|
props: undefined;
|
|
1361
1466
|
meta: Readonly<{}>;
|
|
1362
1467
|
}, Omit<{
|
|
@@ -1368,16 +1473,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1368
1473
|
matched: Omit<{
|
|
1369
1474
|
readonly name: "parentA";
|
|
1370
1475
|
readonly path: "/parentA/[paramA]";
|
|
1371
|
-
}, "meta" | "props"> & {
|
|
1476
|
+
}, "meta" | "name" | "props"> & {
|
|
1372
1477
|
id: string;
|
|
1478
|
+
name: "parentA";
|
|
1373
1479
|
props: undefined;
|
|
1374
1480
|
meta: Readonly<{}>;
|
|
1375
1481
|
};
|
|
1376
1482
|
matches: [Omit<{
|
|
1377
1483
|
readonly name: "parentA";
|
|
1378
1484
|
readonly path: "/parentA/[paramA]";
|
|
1379
|
-
}, "meta" | "props"> & {
|
|
1485
|
+
}, "meta" | "name" | "props"> & {
|
|
1380
1486
|
id: string;
|
|
1487
|
+
name: "parentA";
|
|
1381
1488
|
props: undefined;
|
|
1382
1489
|
meta: Readonly<{}>;
|
|
1383
1490
|
}];
|
|
@@ -1394,8 +1501,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1394
1501
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1395
1502
|
readonly name: "parentA";
|
|
1396
1503
|
readonly path: "/parentA/[paramA]";
|
|
1397
|
-
}, "meta" | "props"> & {
|
|
1504
|
+
}, "meta" | "name" | "props"> & {
|
|
1398
1505
|
id: string;
|
|
1506
|
+
name: "parentA";
|
|
1399
1507
|
props: undefined;
|
|
1400
1508
|
meta: Readonly<{}>;
|
|
1401
1509
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1404,15 +1512,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1404
1512
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1405
1513
|
readonly name: "parentA";
|
|
1406
1514
|
readonly path: "/parentA/[paramA]";
|
|
1407
|
-
}, "meta" | "props"> & {
|
|
1515
|
+
}, "meta" | "name" | "props"> & {
|
|
1408
1516
|
id: string;
|
|
1517
|
+
name: "parentA";
|
|
1409
1518
|
props: undefined;
|
|
1410
1519
|
meta: Readonly<{}>;
|
|
1411
1520
|
}], []>>;
|
|
1412
1521
|
readonly name: "parentA.childA";
|
|
1413
1522
|
readonly path: "/childA/[?paramB]";
|
|
1414
|
-
}, "meta" | "props"> & {
|
|
1523
|
+
}, "meta" | "name" | "props"> & {
|
|
1415
1524
|
id: string;
|
|
1525
|
+
name: "parentA.childA";
|
|
1416
1526
|
props: undefined;
|
|
1417
1527
|
meta: Readonly<{}>;
|
|
1418
1528
|
}, Omit<{
|
|
@@ -1438,16 +1548,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1438
1548
|
matched: Omit<{
|
|
1439
1549
|
readonly name: "parentA";
|
|
1440
1550
|
readonly path: "/parentA/[paramA]";
|
|
1441
|
-
}, "meta" | "props"> & {
|
|
1551
|
+
}, "meta" | "name" | "props"> & {
|
|
1442
1552
|
id: string;
|
|
1553
|
+
name: "parentA";
|
|
1443
1554
|
props: undefined;
|
|
1444
1555
|
meta: Readonly<{}>;
|
|
1445
1556
|
};
|
|
1446
1557
|
matches: [Omit<{
|
|
1447
1558
|
readonly name: "parentA";
|
|
1448
1559
|
readonly path: "/parentA/[paramA]";
|
|
1449
|
-
}, "meta" | "props"> & {
|
|
1560
|
+
}, "meta" | "name" | "props"> & {
|
|
1450
1561
|
id: string;
|
|
1562
|
+
name: "parentA";
|
|
1451
1563
|
props: undefined;
|
|
1452
1564
|
meta: Readonly<{}>;
|
|
1453
1565
|
}];
|
|
@@ -1464,8 +1576,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1464
1576
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1465
1577
|
readonly name: "parentA";
|
|
1466
1578
|
readonly path: "/parentA/[paramA]";
|
|
1467
|
-
}, "meta" | "props"> & {
|
|
1579
|
+
}, "meta" | "name" | "props"> & {
|
|
1468
1580
|
id: string;
|
|
1581
|
+
name: "parentA";
|
|
1469
1582
|
props: undefined;
|
|
1470
1583
|
meta: Readonly<{}>;
|
|
1471
1584
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1474,23 +1587,26 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1474
1587
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1475
1588
|
readonly name: "parentA";
|
|
1476
1589
|
readonly path: "/parentA/[paramA]";
|
|
1477
|
-
}, "meta" | "props"> & {
|
|
1590
|
+
}, "meta" | "name" | "props"> & {
|
|
1478
1591
|
id: string;
|
|
1592
|
+
name: "parentA";
|
|
1479
1593
|
props: undefined;
|
|
1480
1594
|
meta: Readonly<{}>;
|
|
1481
1595
|
}], []>>;
|
|
1482
1596
|
readonly name: "parentA.childA";
|
|
1483
1597
|
readonly path: "/childA/[?paramB]";
|
|
1484
|
-
}, "meta" | "props"> & {
|
|
1598
|
+
}, "meta" | "name" | "props"> & {
|
|
1485
1599
|
id: string;
|
|
1600
|
+
name: "parentA.childA";
|
|
1486
1601
|
props: undefined;
|
|
1487
1602
|
meta: Readonly<{}>;
|
|
1488
1603
|
};
|
|
1489
1604
|
matches: [Omit<{
|
|
1490
1605
|
readonly name: "parentA";
|
|
1491
1606
|
readonly path: "/parentA/[paramA]";
|
|
1492
|
-
}, "meta" | "props"> & {
|
|
1607
|
+
}, "meta" | "name" | "props"> & {
|
|
1493
1608
|
id: string;
|
|
1609
|
+
name: "parentA";
|
|
1494
1610
|
props: undefined;
|
|
1495
1611
|
meta: Readonly<{}>;
|
|
1496
1612
|
}, Omit<{
|
|
@@ -1502,16 +1618,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1502
1618
|
matched: Omit<{
|
|
1503
1619
|
readonly name: "parentA";
|
|
1504
1620
|
readonly path: "/parentA/[paramA]";
|
|
1505
|
-
}, "meta" | "props"> & {
|
|
1621
|
+
}, "meta" | "name" | "props"> & {
|
|
1506
1622
|
id: string;
|
|
1623
|
+
name: "parentA";
|
|
1507
1624
|
props: undefined;
|
|
1508
1625
|
meta: Readonly<{}>;
|
|
1509
1626
|
};
|
|
1510
1627
|
matches: [Omit<{
|
|
1511
1628
|
readonly name: "parentA";
|
|
1512
1629
|
readonly path: "/parentA/[paramA]";
|
|
1513
|
-
}, "meta" | "props"> & {
|
|
1630
|
+
}, "meta" | "name" | "props"> & {
|
|
1514
1631
|
id: string;
|
|
1632
|
+
name: "parentA";
|
|
1515
1633
|
props: undefined;
|
|
1516
1634
|
meta: Readonly<{}>;
|
|
1517
1635
|
}];
|
|
@@ -1528,8 +1646,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1528
1646
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1529
1647
|
readonly name: "parentA";
|
|
1530
1648
|
readonly path: "/parentA/[paramA]";
|
|
1531
|
-
}, "meta" | "props"> & {
|
|
1649
|
+
}, "meta" | "name" | "props"> & {
|
|
1532
1650
|
id: string;
|
|
1651
|
+
name: "parentA";
|
|
1533
1652
|
props: undefined;
|
|
1534
1653
|
meta: Readonly<{}>;
|
|
1535
1654
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1538,15 +1657,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1538
1657
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1539
1658
|
readonly name: "parentA";
|
|
1540
1659
|
readonly path: "/parentA/[paramA]";
|
|
1541
|
-
}, "meta" | "props"> & {
|
|
1660
|
+
}, "meta" | "name" | "props"> & {
|
|
1542
1661
|
id: string;
|
|
1662
|
+
name: "parentA";
|
|
1543
1663
|
props: undefined;
|
|
1544
1664
|
meta: Readonly<{}>;
|
|
1545
1665
|
}], []>>;
|
|
1546
1666
|
readonly name: "parentA.childA";
|
|
1547
1667
|
readonly path: "/childA/[?paramB]";
|
|
1548
|
-
}, "meta" | "props"> & {
|
|
1668
|
+
}, "meta" | "name" | "props"> & {
|
|
1549
1669
|
id: string;
|
|
1670
|
+
name: "parentA.childA";
|
|
1550
1671
|
props: undefined;
|
|
1551
1672
|
meta: Readonly<{}>;
|
|
1552
1673
|
}];
|
|
@@ -1571,8 +1692,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1571
1692
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1572
1693
|
readonly name: "parentA";
|
|
1573
1694
|
readonly path: "/parentA/[paramA]";
|
|
1574
|
-
}, "meta" | "props"> & {
|
|
1695
|
+
}, "meta" | "name" | "props"> & {
|
|
1575
1696
|
id: string;
|
|
1697
|
+
name: "parentA";
|
|
1576
1698
|
props: undefined;
|
|
1577
1699
|
meta: Readonly<{}>;
|
|
1578
1700
|
}, Omit<{
|
|
@@ -1584,16 +1706,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1584
1706
|
matched: Omit<{
|
|
1585
1707
|
readonly name: "parentA";
|
|
1586
1708
|
readonly path: "/parentA/[paramA]";
|
|
1587
|
-
}, "meta" | "props"> & {
|
|
1709
|
+
}, "meta" | "name" | "props"> & {
|
|
1588
1710
|
id: string;
|
|
1711
|
+
name: "parentA";
|
|
1589
1712
|
props: undefined;
|
|
1590
1713
|
meta: Readonly<{}>;
|
|
1591
1714
|
};
|
|
1592
1715
|
matches: [Omit<{
|
|
1593
1716
|
readonly name: "parentA";
|
|
1594
1717
|
readonly path: "/parentA/[paramA]";
|
|
1595
|
-
}, "meta" | "props"> & {
|
|
1718
|
+
}, "meta" | "name" | "props"> & {
|
|
1596
1719
|
id: string;
|
|
1720
|
+
name: "parentA";
|
|
1597
1721
|
props: undefined;
|
|
1598
1722
|
meta: Readonly<{}>;
|
|
1599
1723
|
}];
|
|
@@ -1610,8 +1734,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1610
1734
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1611
1735
|
readonly name: "parentA";
|
|
1612
1736
|
readonly path: "/parentA/[paramA]";
|
|
1613
|
-
}, "meta" | "props"> & {
|
|
1737
|
+
}, "meta" | "name" | "props"> & {
|
|
1614
1738
|
id: string;
|
|
1739
|
+
name: "parentA";
|
|
1615
1740
|
props: undefined;
|
|
1616
1741
|
meta: Readonly<{}>;
|
|
1617
1742
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1620,15 +1745,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1620
1745
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1621
1746
|
readonly name: "parentA";
|
|
1622
1747
|
readonly path: "/parentA/[paramA]";
|
|
1623
|
-
}, "meta" | "props"> & {
|
|
1748
|
+
}, "meta" | "name" | "props"> & {
|
|
1624
1749
|
id: string;
|
|
1750
|
+
name: "parentA";
|
|
1625
1751
|
props: undefined;
|
|
1626
1752
|
meta: Readonly<{}>;
|
|
1627
1753
|
}], []>>;
|
|
1628
1754
|
readonly name: "parentA.childA";
|
|
1629
1755
|
readonly path: "/childA/[?paramB]";
|
|
1630
|
-
}, "meta" | "props"> & {
|
|
1756
|
+
}, "meta" | "name" | "props"> & {
|
|
1631
1757
|
id: string;
|
|
1758
|
+
name: "parentA.childA";
|
|
1632
1759
|
props: undefined;
|
|
1633
1760
|
meta: Readonly<{}>;
|
|
1634
1761
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA.childA", import('../main').Url<{
|
|
@@ -1645,8 +1772,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1645
1772
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1646
1773
|
readonly name: "parentA";
|
|
1647
1774
|
readonly path: "/parentA/[paramA]";
|
|
1648
|
-
}, "meta" | "props"> & {
|
|
1775
|
+
}, "meta" | "name" | "props"> & {
|
|
1649
1776
|
id: string;
|
|
1777
|
+
name: "parentA";
|
|
1650
1778
|
props: undefined;
|
|
1651
1779
|
meta: Readonly<{}>;
|
|
1652
1780
|
}, Omit<{
|
|
@@ -1658,16 +1786,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1658
1786
|
matched: Omit<{
|
|
1659
1787
|
readonly name: "parentA";
|
|
1660
1788
|
readonly path: "/parentA/[paramA]";
|
|
1661
|
-
}, "meta" | "props"> & {
|
|
1789
|
+
}, "meta" | "name" | "props"> & {
|
|
1662
1790
|
id: string;
|
|
1791
|
+
name: "parentA";
|
|
1663
1792
|
props: undefined;
|
|
1664
1793
|
meta: Readonly<{}>;
|
|
1665
1794
|
};
|
|
1666
1795
|
matches: [Omit<{
|
|
1667
1796
|
readonly name: "parentA";
|
|
1668
1797
|
readonly path: "/parentA/[paramA]";
|
|
1669
|
-
}, "meta" | "props"> & {
|
|
1798
|
+
}, "meta" | "name" | "props"> & {
|
|
1670
1799
|
id: string;
|
|
1800
|
+
name: "parentA";
|
|
1671
1801
|
props: undefined;
|
|
1672
1802
|
meta: Readonly<{}>;
|
|
1673
1803
|
}];
|
|
@@ -1684,8 +1814,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1684
1814
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1685
1815
|
readonly name: "parentA";
|
|
1686
1816
|
readonly path: "/parentA/[paramA]";
|
|
1687
|
-
}, "meta" | "props"> & {
|
|
1817
|
+
}, "meta" | "name" | "props"> & {
|
|
1688
1818
|
id: string;
|
|
1819
|
+
name: "parentA";
|
|
1689
1820
|
props: undefined;
|
|
1690
1821
|
meta: Readonly<{}>;
|
|
1691
1822
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1694,15 +1825,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1694
1825
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1695
1826
|
readonly name: "parentA";
|
|
1696
1827
|
readonly path: "/parentA/[paramA]";
|
|
1697
|
-
}, "meta" | "props"> & {
|
|
1828
|
+
}, "meta" | "name" | "props"> & {
|
|
1698
1829
|
id: string;
|
|
1830
|
+
name: "parentA";
|
|
1699
1831
|
props: undefined;
|
|
1700
1832
|
meta: Readonly<{}>;
|
|
1701
1833
|
}], []>>;
|
|
1702
1834
|
readonly name: "parentA.childA";
|
|
1703
1835
|
readonly path: "/childA/[?paramB]";
|
|
1704
|
-
}, "meta" | "props"> & {
|
|
1836
|
+
}, "meta" | "name" | "props"> & {
|
|
1705
1837
|
id: string;
|
|
1838
|
+
name: "parentA.childA";
|
|
1706
1839
|
props: undefined;
|
|
1707
1840
|
meta: Readonly<{}>;
|
|
1708
1841
|
}], []>>;
|
|
@@ -1711,8 +1844,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1711
1844
|
readonly component: {
|
|
1712
1845
|
template: string;
|
|
1713
1846
|
};
|
|
1714
|
-
}, "meta" | "props"> & {
|
|
1847
|
+
}, "meta" | "name" | "props"> & {
|
|
1715
1848
|
id: string;
|
|
1849
|
+
name: "parentA.childA.grandChildA";
|
|
1716
1850
|
props: undefined;
|
|
1717
1851
|
meta: Readonly<{}>;
|
|
1718
1852
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA.childA.grandChildA", import('../main').Url<{
|
|
@@ -1734,8 +1868,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1734
1868
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1735
1869
|
readonly name: "parentA";
|
|
1736
1870
|
readonly path: "/parentA/[paramA]";
|
|
1737
|
-
}, "meta" | "props"> & {
|
|
1871
|
+
}, "meta" | "name" | "props"> & {
|
|
1738
1872
|
id: string;
|
|
1873
|
+
name: "parentA";
|
|
1739
1874
|
props: undefined;
|
|
1740
1875
|
meta: Readonly<{}>;
|
|
1741
1876
|
}, Omit<{
|
|
@@ -1747,16 +1882,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1747
1882
|
matched: Omit<{
|
|
1748
1883
|
readonly name: "parentA";
|
|
1749
1884
|
readonly path: "/parentA/[paramA]";
|
|
1750
|
-
}, "meta" | "props"> & {
|
|
1885
|
+
}, "meta" | "name" | "props"> & {
|
|
1751
1886
|
id: string;
|
|
1887
|
+
name: "parentA";
|
|
1752
1888
|
props: undefined;
|
|
1753
1889
|
meta: Readonly<{}>;
|
|
1754
1890
|
};
|
|
1755
1891
|
matches: [Omit<{
|
|
1756
1892
|
readonly name: "parentA";
|
|
1757
1893
|
readonly path: "/parentA/[paramA]";
|
|
1758
|
-
}, "meta" | "props"> & {
|
|
1894
|
+
}, "meta" | "name" | "props"> & {
|
|
1759
1895
|
id: string;
|
|
1896
|
+
name: "parentA";
|
|
1760
1897
|
props: undefined;
|
|
1761
1898
|
meta: Readonly<{}>;
|
|
1762
1899
|
}];
|
|
@@ -1773,8 +1910,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1773
1910
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1774
1911
|
readonly name: "parentA";
|
|
1775
1912
|
readonly path: "/parentA/[paramA]";
|
|
1776
|
-
}, "meta" | "props"> & {
|
|
1913
|
+
}, "meta" | "name" | "props"> & {
|
|
1777
1914
|
id: string;
|
|
1915
|
+
name: "parentA";
|
|
1778
1916
|
props: undefined;
|
|
1779
1917
|
meta: Readonly<{}>;
|
|
1780
1918
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1783,15 +1921,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1783
1921
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1784
1922
|
readonly name: "parentA";
|
|
1785
1923
|
readonly path: "/parentA/[paramA]";
|
|
1786
|
-
}, "meta" | "props"> & {
|
|
1924
|
+
}, "meta" | "name" | "props"> & {
|
|
1787
1925
|
id: string;
|
|
1926
|
+
name: "parentA";
|
|
1788
1927
|
props: undefined;
|
|
1789
1928
|
meta: Readonly<{}>;
|
|
1790
1929
|
}], []>>;
|
|
1791
1930
|
readonly name: "parentA.childA";
|
|
1792
1931
|
readonly path: "/childA/[?paramB]";
|
|
1793
|
-
}, "meta" | "props"> & {
|
|
1932
|
+
}, "meta" | "name" | "props"> & {
|
|
1794
1933
|
id: string;
|
|
1934
|
+
name: "parentA.childA";
|
|
1795
1935
|
props: undefined;
|
|
1796
1936
|
meta: Readonly<{}>;
|
|
1797
1937
|
}, Omit<{
|
|
@@ -1817,16 +1957,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1817
1957
|
matched: Omit<{
|
|
1818
1958
|
readonly name: "parentA";
|
|
1819
1959
|
readonly path: "/parentA/[paramA]";
|
|
1820
|
-
}, "meta" | "props"> & {
|
|
1960
|
+
}, "meta" | "name" | "props"> & {
|
|
1821
1961
|
id: string;
|
|
1962
|
+
name: "parentA";
|
|
1822
1963
|
props: undefined;
|
|
1823
1964
|
meta: Readonly<{}>;
|
|
1824
1965
|
};
|
|
1825
1966
|
matches: [Omit<{
|
|
1826
1967
|
readonly name: "parentA";
|
|
1827
1968
|
readonly path: "/parentA/[paramA]";
|
|
1828
|
-
}, "meta" | "props"> & {
|
|
1969
|
+
}, "meta" | "name" | "props"> & {
|
|
1829
1970
|
id: string;
|
|
1971
|
+
name: "parentA";
|
|
1830
1972
|
props: undefined;
|
|
1831
1973
|
meta: Readonly<{}>;
|
|
1832
1974
|
}];
|
|
@@ -1843,8 +1985,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1843
1985
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1844
1986
|
readonly name: "parentA";
|
|
1845
1987
|
readonly path: "/parentA/[paramA]";
|
|
1846
|
-
}, "meta" | "props"> & {
|
|
1988
|
+
}, "meta" | "name" | "props"> & {
|
|
1847
1989
|
id: string;
|
|
1990
|
+
name: "parentA";
|
|
1848
1991
|
props: undefined;
|
|
1849
1992
|
meta: Readonly<{}>;
|
|
1850
1993
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1853,23 +1996,26 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1853
1996
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1854
1997
|
readonly name: "parentA";
|
|
1855
1998
|
readonly path: "/parentA/[paramA]";
|
|
1856
|
-
}, "meta" | "props"> & {
|
|
1999
|
+
}, "meta" | "name" | "props"> & {
|
|
1857
2000
|
id: string;
|
|
2001
|
+
name: "parentA";
|
|
1858
2002
|
props: undefined;
|
|
1859
2003
|
meta: Readonly<{}>;
|
|
1860
2004
|
}], []>>;
|
|
1861
2005
|
readonly name: "parentA.childA";
|
|
1862
2006
|
readonly path: "/childA/[?paramB]";
|
|
1863
|
-
}, "meta" | "props"> & {
|
|
2007
|
+
}, "meta" | "name" | "props"> & {
|
|
1864
2008
|
id: string;
|
|
2009
|
+
name: "parentA.childA";
|
|
1865
2010
|
props: undefined;
|
|
1866
2011
|
meta: Readonly<{}>;
|
|
1867
2012
|
};
|
|
1868
2013
|
matches: [Omit<{
|
|
1869
2014
|
readonly name: "parentA";
|
|
1870
2015
|
readonly path: "/parentA/[paramA]";
|
|
1871
|
-
}, "meta" | "props"> & {
|
|
2016
|
+
}, "meta" | "name" | "props"> & {
|
|
1872
2017
|
id: string;
|
|
2018
|
+
name: "parentA";
|
|
1873
2019
|
props: undefined;
|
|
1874
2020
|
meta: Readonly<{}>;
|
|
1875
2021
|
}, Omit<{
|
|
@@ -1881,16 +2027,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1881
2027
|
matched: Omit<{
|
|
1882
2028
|
readonly name: "parentA";
|
|
1883
2029
|
readonly path: "/parentA/[paramA]";
|
|
1884
|
-
}, "meta" | "props"> & {
|
|
2030
|
+
}, "meta" | "name" | "props"> & {
|
|
1885
2031
|
id: string;
|
|
2032
|
+
name: "parentA";
|
|
1886
2033
|
props: undefined;
|
|
1887
2034
|
meta: Readonly<{}>;
|
|
1888
2035
|
};
|
|
1889
2036
|
matches: [Omit<{
|
|
1890
2037
|
readonly name: "parentA";
|
|
1891
2038
|
readonly path: "/parentA/[paramA]";
|
|
1892
|
-
}, "meta" | "props"> & {
|
|
2039
|
+
}, "meta" | "name" | "props"> & {
|
|
1893
2040
|
id: string;
|
|
2041
|
+
name: "parentA";
|
|
1894
2042
|
props: undefined;
|
|
1895
2043
|
meta: Readonly<{}>;
|
|
1896
2044
|
}];
|
|
@@ -1907,8 +2055,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1907
2055
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1908
2056
|
readonly name: "parentA";
|
|
1909
2057
|
readonly path: "/parentA/[paramA]";
|
|
1910
|
-
}, "meta" | "props"> & {
|
|
2058
|
+
}, "meta" | "name" | "props"> & {
|
|
1911
2059
|
id: string;
|
|
2060
|
+
name: "parentA";
|
|
1912
2061
|
props: undefined;
|
|
1913
2062
|
meta: Readonly<{}>;
|
|
1914
2063
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1917,15 +2066,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1917
2066
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1918
2067
|
readonly name: "parentA";
|
|
1919
2068
|
readonly path: "/parentA/[paramA]";
|
|
1920
|
-
}, "meta" | "props"> & {
|
|
2069
|
+
}, "meta" | "name" | "props"> & {
|
|
1921
2070
|
id: string;
|
|
2071
|
+
name: "parentA";
|
|
1922
2072
|
props: undefined;
|
|
1923
2073
|
meta: Readonly<{}>;
|
|
1924
2074
|
}], []>>;
|
|
1925
2075
|
readonly name: "parentA.childA";
|
|
1926
2076
|
readonly path: "/childA/[?paramB]";
|
|
1927
|
-
}, "meta" | "props"> & {
|
|
2077
|
+
}, "meta" | "name" | "props"> & {
|
|
1928
2078
|
id: string;
|
|
2079
|
+
name: "parentA.childA";
|
|
1929
2080
|
props: undefined;
|
|
1930
2081
|
meta: Readonly<{}>;
|
|
1931
2082
|
}];
|
|
@@ -1950,8 +2101,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1950
2101
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1951
2102
|
readonly name: "parentA";
|
|
1952
2103
|
readonly path: "/parentA/[paramA]";
|
|
1953
|
-
}, "meta" | "props"> & {
|
|
2104
|
+
}, "meta" | "name" | "props"> & {
|
|
1954
2105
|
id: string;
|
|
2106
|
+
name: "parentA";
|
|
1955
2107
|
props: undefined;
|
|
1956
2108
|
meta: Readonly<{}>;
|
|
1957
2109
|
}, Omit<{
|
|
@@ -1963,16 +2115,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1963
2115
|
matched: Omit<{
|
|
1964
2116
|
readonly name: "parentA";
|
|
1965
2117
|
readonly path: "/parentA/[paramA]";
|
|
1966
|
-
}, "meta" | "props"> & {
|
|
2118
|
+
}, "meta" | "name" | "props"> & {
|
|
1967
2119
|
id: string;
|
|
2120
|
+
name: "parentA";
|
|
1968
2121
|
props: undefined;
|
|
1969
2122
|
meta: Readonly<{}>;
|
|
1970
2123
|
};
|
|
1971
2124
|
matches: [Omit<{
|
|
1972
2125
|
readonly name: "parentA";
|
|
1973
2126
|
readonly path: "/parentA/[paramA]";
|
|
1974
|
-
}, "meta" | "props"> & {
|
|
2127
|
+
}, "meta" | "name" | "props"> & {
|
|
1975
2128
|
id: string;
|
|
2129
|
+
name: "parentA";
|
|
1976
2130
|
props: undefined;
|
|
1977
2131
|
meta: Readonly<{}>;
|
|
1978
2132
|
}];
|
|
@@ -1989,8 +2143,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1989
2143
|
}>, Readonly<{}>, {}, [Omit<{
|
|
1990
2144
|
readonly name: "parentA";
|
|
1991
2145
|
readonly path: "/parentA/[paramA]";
|
|
1992
|
-
}, "meta" | "props"> & {
|
|
2146
|
+
}, "meta" | "name" | "props"> & {
|
|
1993
2147
|
id: string;
|
|
2148
|
+
name: "parentA";
|
|
1994
2149
|
props: undefined;
|
|
1995
2150
|
meta: Readonly<{}>;
|
|
1996
2151
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -1999,15 +2154,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
1999
2154
|
}>, Readonly<{}>, {}, [Omit<{
|
|
2000
2155
|
readonly name: "parentA";
|
|
2001
2156
|
readonly path: "/parentA/[paramA]";
|
|
2002
|
-
}, "meta" | "props"> & {
|
|
2157
|
+
}, "meta" | "name" | "props"> & {
|
|
2003
2158
|
id: string;
|
|
2159
|
+
name: "parentA";
|
|
2004
2160
|
props: undefined;
|
|
2005
2161
|
meta: Readonly<{}>;
|
|
2006
2162
|
}], []>>;
|
|
2007
2163
|
readonly name: "parentA.childA";
|
|
2008
2164
|
readonly path: "/childA/[?paramB]";
|
|
2009
|
-
}, "meta" | "props"> & {
|
|
2165
|
+
}, "meta" | "name" | "props"> & {
|
|
2010
2166
|
id: string;
|
|
2167
|
+
name: "parentA.childA";
|
|
2011
2168
|
props: undefined;
|
|
2012
2169
|
meta: Readonly<{}>;
|
|
2013
2170
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA.childA", import('../main').Url<{
|
|
@@ -2024,8 +2181,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2024
2181
|
}>, Readonly<{}>, {}, [Omit<{
|
|
2025
2182
|
readonly name: "parentA";
|
|
2026
2183
|
readonly path: "/parentA/[paramA]";
|
|
2027
|
-
}, "meta" | "props"> & {
|
|
2184
|
+
}, "meta" | "name" | "props"> & {
|
|
2028
2185
|
id: string;
|
|
2186
|
+
name: "parentA";
|
|
2029
2187
|
props: undefined;
|
|
2030
2188
|
meta: Readonly<{}>;
|
|
2031
2189
|
}, Omit<{
|
|
@@ -2037,16 +2195,18 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2037
2195
|
matched: Omit<{
|
|
2038
2196
|
readonly name: "parentA";
|
|
2039
2197
|
readonly path: "/parentA/[paramA]";
|
|
2040
|
-
}, "meta" | "props"> & {
|
|
2198
|
+
}, "meta" | "name" | "props"> & {
|
|
2041
2199
|
id: string;
|
|
2200
|
+
name: "parentA";
|
|
2042
2201
|
props: undefined;
|
|
2043
2202
|
meta: Readonly<{}>;
|
|
2044
2203
|
};
|
|
2045
2204
|
matches: [Omit<{
|
|
2046
2205
|
readonly name: "parentA";
|
|
2047
2206
|
readonly path: "/parentA/[paramA]";
|
|
2048
|
-
}, "meta" | "props"> & {
|
|
2207
|
+
}, "meta" | "name" | "props"> & {
|
|
2049
2208
|
id: string;
|
|
2209
|
+
name: "parentA";
|
|
2050
2210
|
props: undefined;
|
|
2051
2211
|
meta: Readonly<{}>;
|
|
2052
2212
|
}];
|
|
@@ -2063,8 +2223,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2063
2223
|
}>, Readonly<{}>, {}, [Omit<{
|
|
2064
2224
|
readonly name: "parentA";
|
|
2065
2225
|
readonly path: "/parentA/[paramA]";
|
|
2066
|
-
}, "meta" | "props"> & {
|
|
2226
|
+
}, "meta" | "name" | "props"> & {
|
|
2067
2227
|
id: string;
|
|
2228
|
+
name: "parentA";
|
|
2068
2229
|
props: undefined;
|
|
2069
2230
|
meta: Readonly<{}>;
|
|
2070
2231
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentA", import('../main').ToUrl<{
|
|
@@ -2073,15 +2234,17 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2073
2234
|
}>, Readonly<{}>, {}, [Omit<{
|
|
2074
2235
|
readonly name: "parentA";
|
|
2075
2236
|
readonly path: "/parentA/[paramA]";
|
|
2076
|
-
}, "meta" | "props"> & {
|
|
2237
|
+
}, "meta" | "name" | "props"> & {
|
|
2077
2238
|
id: string;
|
|
2239
|
+
name: "parentA";
|
|
2078
2240
|
props: undefined;
|
|
2079
2241
|
meta: Readonly<{}>;
|
|
2080
2242
|
}], []>>;
|
|
2081
2243
|
readonly name: "parentA.childA";
|
|
2082
2244
|
readonly path: "/childA/[?paramB]";
|
|
2083
|
-
}, "meta" | "props"> & {
|
|
2245
|
+
}, "meta" | "name" | "props"> & {
|
|
2084
2246
|
id: string;
|
|
2247
|
+
name: "parentA.childA";
|
|
2085
2248
|
props: undefined;
|
|
2086
2249
|
meta: Readonly<{}>;
|
|
2087
2250
|
}], []>>;
|
|
@@ -2090,8 +2253,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2090
2253
|
readonly component: {
|
|
2091
2254
|
template: string;
|
|
2092
2255
|
};
|
|
2093
|
-
}, "meta" | "props"> & {
|
|
2256
|
+
}, "meta" | "name" | "props"> & {
|
|
2094
2257
|
id: string;
|
|
2258
|
+
name: "parentA.childA.grandChildA";
|
|
2095
2259
|
props: undefined;
|
|
2096
2260
|
meta: Readonly<{}>;
|
|
2097
2261
|
}], []>>, import('../main').ToUrl<{
|
|
@@ -2108,8 +2272,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2108
2272
|
readonly component: {
|
|
2109
2273
|
template: string;
|
|
2110
2274
|
};
|
|
2111
|
-
}, "meta" | "props"> & {
|
|
2275
|
+
}, "meta" | "name" | "props"> & {
|
|
2112
2276
|
id: string;
|
|
2277
|
+
name: "parentB";
|
|
2113
2278
|
props: undefined;
|
|
2114
2279
|
meta: Readonly<{}>;
|
|
2115
2280
|
};
|
|
@@ -2119,8 +2284,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2119
2284
|
readonly component: {
|
|
2120
2285
|
template: string;
|
|
2121
2286
|
};
|
|
2122
|
-
}, "meta" | "props"> & {
|
|
2287
|
+
}, "meta" | "name" | "props"> & {
|
|
2123
2288
|
id: string;
|
|
2289
|
+
name: "parentB";
|
|
2124
2290
|
props: undefined;
|
|
2125
2291
|
meta: Readonly<{}>;
|
|
2126
2292
|
}];
|
|
@@ -2143,8 +2309,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2143
2309
|
readonly component: {
|
|
2144
2310
|
template: string;
|
|
2145
2311
|
};
|
|
2146
|
-
}, "meta" | "props"> & {
|
|
2312
|
+
}, "meta" | "name" | "props"> & {
|
|
2147
2313
|
id: string;
|
|
2314
|
+
name: "parentB";
|
|
2148
2315
|
props: undefined;
|
|
2149
2316
|
meta: Readonly<{}>;
|
|
2150
2317
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentB", import('../main').ToUrl<{
|
|
@@ -2159,8 +2326,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2159
2326
|
readonly component: {
|
|
2160
2327
|
template: string;
|
|
2161
2328
|
};
|
|
2162
|
-
}, "meta" | "props"> & {
|
|
2329
|
+
}, "meta" | "name" | "props"> & {
|
|
2163
2330
|
id: string;
|
|
2331
|
+
name: "parentB";
|
|
2164
2332
|
props: undefined;
|
|
2165
2333
|
meta: Readonly<{}>;
|
|
2166
2334
|
}], []>>, import('../main').ToUrl<{
|
|
@@ -2177,8 +2345,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2177
2345
|
readonly component: {
|
|
2178
2346
|
template: string;
|
|
2179
2347
|
};
|
|
2180
|
-
}, "meta" | "props"> & {
|
|
2348
|
+
}, "meta" | "name" | "props"> & {
|
|
2181
2349
|
id: string;
|
|
2350
|
+
name: "parentC";
|
|
2182
2351
|
props: undefined;
|
|
2183
2352
|
meta: Readonly<{}>;
|
|
2184
2353
|
};
|
|
@@ -2188,8 +2357,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2188
2357
|
readonly component: {
|
|
2189
2358
|
template: string;
|
|
2190
2359
|
};
|
|
2191
|
-
}, "meta" | "props"> & {
|
|
2360
|
+
}, "meta" | "name" | "props"> & {
|
|
2192
2361
|
id: string;
|
|
2362
|
+
name: "parentC";
|
|
2193
2363
|
props: undefined;
|
|
2194
2364
|
meta: Readonly<{}>;
|
|
2195
2365
|
}];
|
|
@@ -2212,8 +2382,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2212
2382
|
readonly component: {
|
|
2213
2383
|
template: string;
|
|
2214
2384
|
};
|
|
2215
|
-
}, "meta" | "props"> & {
|
|
2385
|
+
}, "meta" | "name" | "props"> & {
|
|
2216
2386
|
id: string;
|
|
2387
|
+
name: "parentC";
|
|
2217
2388
|
props: undefined;
|
|
2218
2389
|
meta: Readonly<{}>;
|
|
2219
2390
|
}], []>, []> & import('../types/redirects').RouteRedirects<import('../main').Route<"parentC", import('../main').ToUrl<{
|
|
@@ -2228,8 +2399,9 @@ export declare const routes: readonly [import('../main').ToUrl<{
|
|
|
2228
2399
|
readonly component: {
|
|
2229
2400
|
template: string;
|
|
2230
2401
|
};
|
|
2231
|
-
}, "meta" | "props"> & {
|
|
2402
|
+
}, "meta" | "name" | "props"> & {
|
|
2232
2403
|
id: string;
|
|
2404
|
+
name: "parentC";
|
|
2233
2405
|
props: undefined;
|
|
2234
2406
|
meta: Readonly<{}>;
|
|
2235
2407
|
}], []>>];
|