Migrate playlist list to use list store

This commit is contained in:
jeffvli 2023-07-19 00:28:46 -07:00
parent 78860db537
commit bba27c5ddb
5 changed files with 158 additions and 279 deletions

View file

@ -798,7 +798,7 @@ export type DeletePlaylistArgs = {
} & BaseEndpointArgs;
// Playlist List
export type PlaylistListResponse = BasePaginatedResponse<Playlist[]>;
export type PlaylistListResponse = BasePaginatedResponse<Playlist[]> | null | undefined;
export enum PlaylistListSort {
DURATION = 'duration',