| 283 | } |
| 284 | |
| 285 | export interface FileRouteTypes { |
| 286 | fileRoutesByFullPath: FileRoutesByFullPath |
| 287 | fullPaths: |
| 288 | | '' |
| 289 | | '/login' |
| 290 | | '/signup' |
| 291 | | '/thanks' |
| 292 | | '/' |
| 293 | | '/collections' |
| 294 | | '/collections/$collectionId/practice' |
| 295 | | '/collections/$collectionId/stats' |
| 296 | | '/collections/$collectionId' |
| 297 | | '/collections/$collectionId/cards/$cardId' |
| 298 | | '/collections/$collectionId/cards/new' |
| 299 | fileRoutesByTo: FileRoutesByTo |
| 300 | to: |
| 301 | | '' |
| 302 | | '/login' |
| 303 | | '/signup' |
| 304 | | '/thanks' |
| 305 | | '/' |
| 306 | | '/collections' |
| 307 | | '/collections/$collectionId/practice' |
| 308 | | '/collections/$collectionId/stats' |
| 309 | | '/collections/$collectionId' |
| 310 | | '/collections/$collectionId/cards/$cardId' |
| 311 | | '/collections/$collectionId/cards/new' |
| 312 | id: |
| 313 | | '__root__' |
| 314 | | '/_layout' |
| 315 | | '/_publicLayout' |
| 316 | | '/_publicLayout/login' |
| 317 | | '/_publicLayout/signup' |
| 318 | | '/_publicLayout/thanks' |
| 319 | | '/_publicLayout/' |
| 320 | | '/_layout/collections/' |
| 321 | | '/_layout/collections/$collectionId/practice' |
| 322 | | '/_layout/collections/$collectionId/stats' |
| 323 | | '/_layout/collections/$collectionId/' |
| 324 | | '/_layout/collections/$collectionId/cards/$cardId' |
| 325 | | '/_layout/collections/$collectionId/cards/new' |
| 326 | fileRoutesById: FileRoutesById |
| 327 | } |
| 328 | |
| 329 | export interface RootRouteChildren { |
| 330 | LayoutRoute: typeof LayoutRouteWithChildren |
nothing calls this directly
no outgoing calls
no test coverage detected