add client-side sort to artist favorite songs (#1691)

This commit is contained in:
jeffvli
2026-03-09 20:58:02 -07:00
parent 8825fc1e84
commit 66e7b44d75
3 changed files with 61 additions and 10 deletions
+6 -6
View File
@@ -1472,6 +1472,12 @@ export type ImageArgs = BaseEndpointArgs & {
query: ImageQuery;
};
export type ImageQuery = {
id: string;
itemType: LibraryItem;
size?: number;
};
export type ImageRequest = {
cacheKey: string;
credentials?: RequestCredentials;
@@ -1479,12 +1485,6 @@ export type ImageRequest = {
url: string;
};
export type ImageQuery = {
id: string;
itemType: LibraryItem;
size?: number;
};
export type InternalControllerEndpoint = {
addToPlaylist: (
args: ReplaceApiClientProps<AddToPlaylistArgs>,