Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
na2na-p authored and tkhduracell committed Jan 13, 2024
1 parent b2fef52 commit 1999404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export type SpotifyPlayerError = 'initialization_error' | 'authentication_error'
export type SpotifyPlayerTrack = {
uri: string, // Spotify URI
id?: string, // Spotify ID from URI (can be null)
type: 'track' | 'episode' | 'add', // Content type: can be "track", "episode" or "ad"
type: 'track' | 'episode' | 'ad', // Content type: can be "track", "episode" or "ad"
media_type: 'audio' | 'video', // Type of file: can be "audio" or "video"
name: string, // Name of content
is_playable: boolean, // Flag indicating whether it can be played
Expand Down

0 comments on commit 1999404

Please sign in to comment.