Typedefs : Track : trackOptions
trackOptions object
Parameter | Type | Description |
---|---|---|
track | string | The base64 encoded track. |
artworkUrl | string | The artwork url of the track. |
sourceName | TrackSourceTypes | The track source name. |
title | string | The title of the track. |
identifier | string | The identifier of the track. |
author | string | The author of the track. |
duration | number | The duration of the track. |
isrc | string | The ISRC of the track. |
isSeekable | boolean | If the track is seekable. |
isStream | boolean | If the track is a stream. |
uri | string | The uri of the track. |
thumbnail | string | null | The thumbnail of the track or null if it's a unsupported source. |
requester | User | ClientUser | The user that requested the track. |
displayThumbnail() | function as displayThumbnail() | Displays the track thumbnail with optional size or null if it's a unsupported source. |
pluginInfo | TrackPluginInfo | Additional track info provided by plugins. |
customData | Record<string, string> | Add your own data to the track. |
displayThumbnail()
- Example usage
console.log(track.displayThumbnail());