Update song list table view

This commit is contained in:
jeffvli 2023-07-16 11:44:33 -07:00
parent f09227d963
commit 1fc5e9a0e8
4 changed files with 162 additions and 268 deletions

View file

@ -402,7 +402,7 @@ export type AlbumDetailQuery = { id: string };
export type AlbumDetailArgs = { query: AlbumDetailQuery } & BaseEndpointArgs;
// Song List
export type SongListResponse = BasePaginatedResponse<Song[]>;
export type SongListResponse = BasePaginatedResponse<Song[]> | null | undefined;
export enum SongListSort {
ALBUM = 'album',