feat(web): add SearchResponse and RadioResponse types

This commit is contained in:
2026-04-25 15:02:56 -04:00
parent 1e66910823
commit 8e80b6e0de
+10
View File
@@ -46,3 +46,13 @@ export type ArtistDetail = ArtistRef & {
export type AlbumDetail = AlbumRef & {
tracks: TrackRef[];
};
export type SearchResponse = {
artists: Page<ArtistRef>;
albums: Page<AlbumRef>;
tracks: Page<TrackRef>;
};
export type RadioResponse = {
tracks: TrackRef[];
};