diff --git a/dist/index.d.ts b/dist/index.d.ts index 0c0f6c1..f0aefbd 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -3290,6 +3290,7 @@ interface MediaTrack { title: string; source: string; artwork: MediaArtwork[] | null; + id?: string; duration?: number; genre?: string; album?: string; diff --git a/src/types/audio.types.ts b/src/types/audio.types.ts index 3069e7c..69cdf67 100644 --- a/src/types/audio.types.ts +++ b/src/types/audio.types.ts @@ -19,6 +19,7 @@ export interface MediaTrack { title: string; source: string; artwork: MediaArtwork[] | null; + id?: string; duration?: number; genre?: string; album?: string;