Skip to content

Commit

Permalink
Merge pull request #28 from afkcodes/feature/track-id
Browse files Browse the repository at this point in the history
add track id for media track
  • Loading branch information
afkcodes authored Jan 1, 2024
2 parents 5226c9a + 5d11f3f commit 21dc260
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3290,6 +3290,7 @@ interface MediaTrack {
title: string;
source: string;
artwork: MediaArtwork[] | null;
id?: string;
duration?: number;
genre?: string;
album?: string;
Expand Down
1 change: 1 addition & 0 deletions src/types/audio.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export interface MediaTrack {
title: string;
source: string;
artwork: MediaArtwork[] | null;
id?: string;
duration?: number;
genre?: string;
album?: string;
Expand Down

0 comments on commit 21dc260

Please sign in to comment.