ruvyrias / Exports / LoadTrackResponsePlaylist
Interface: LoadTrackResponsePlaylist
Represents a response indicating a playlist during the loading of tracks.
Table of contents
Properties
Properties
data
• data: Object
Information about the playlist, including its name, selected track, plugin info, and an array of track data.
Type declaration
Name | Type | Description |
---|---|---|
info | { name : string ; selectedTrack : number } | Information about the playlist, such as its name and the selected track. |
info.name | string | The name of the playlist. |
info.selectedTrack | number | The index of the selected track in the playlist. |
pluginInfo | any | Additional plugin information related to the playlist. |
tracks | TrackData [] | An array of track data representing the tracks in the playlist. |
Defined in
loadType
• loadType: "playlist"
The type of load, indicating it's a playlist response.