add bit depth, sample rate

This commit is contained in:
Kendall Garner
2025-07-13 07:12:13 -07:00
parent 8b141d652c
commit 4b4df28641
8 changed files with 65 additions and 16 deletions
+2
View File
@@ -320,6 +320,7 @@ export type Song = {
albumId: string;
artistName: string;
artists: RelatedArtist[];
bitDepth: null | number;
bitRate: number;
bpm: null | number;
channels: null | number;
@@ -346,6 +347,7 @@ export type Song = {
playlistItemId?: string;
releaseDate: null | string;
releaseYear: null | string;
sampleRate: null | number;
serverId: string;
serverType: ServerType;
size: number;