null songCount and albumCount in genre type

This commit is contained in:
jeffvli
2025-11-23 14:26:12 -08:00
parent a32f76720a
commit 7c71f1058d
4 changed files with 24 additions and 6 deletions
+2 -2
View File
@@ -265,11 +265,11 @@ export type Genre = {
_itemType: LibraryItem.GENRE;
_serverId: string;
_serverType: ServerType;
albumCount?: number;
albumCount: null | number;
id: string;
imageUrl: null | string;
name: string;
songCount?: number;
songCount: null | number;
};
export type GenreListArgs = BaseEndpointArgs & { query: GenreListQuery };