From 6d5e10a31ce2d7a1965cf21745ccb682bee64611 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 8 May 2023 02:42:38 -0700 Subject: [PATCH] Add albumCount and songCount to genre --- src/renderer/api/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/renderer/api/types.ts b/src/renderer/api/types.ts index 65bd058e..e9405687 100644 --- a/src/renderer/api/types.ts +++ b/src/renderer/api/types.ts @@ -129,8 +129,10 @@ export type AuthenticationResponse = { }; export type Genre = { + albumCount?: number; id: string; name: string; + songCount?: number; }; export type Album = {