| 86 | } as any) |
| 87 | |
| 88 | export interface FileRoutesByFullPath { |
| 89 | '/': typeof IndexRoute |
| 90 | '/dashboard': typeof DashboardRoute |
| 91 | '/search': typeof SearchRoute |
| 92 | '/sources': typeof SourcesRoute |
| 93 | '/favorites/albums': typeof FavoritesAlbumsRoute |
| 94 | '/favorites/artists': typeof FavoritesArtistsRoute |
| 95 | '/favorites/tracks': typeof FavoritesTracksRoute |
| 96 | '/playlists/$playlistId': typeof PlaylistsPlaylistIdRoute |
| 97 | '/playlists/': typeof PlaylistsIndexRoute |
| 98 | '/album/$providerId/$albumId': typeof AlbumProviderIdAlbumIdRoute |
| 99 | '/artist/$providerId/$artistId': typeof ArtistProviderIdArtistIdRoute |
| 100 | '/playlists/import/$providerId': typeof PlaylistsImportProviderIdRoute |
| 101 | } |
| 102 | export interface FileRoutesByTo { |
| 103 | '/': typeof IndexRoute |
| 104 | '/dashboard': typeof DashboardRoute |
nothing calls this directly
no outgoing calls
no test coverage detected