Skip to main content

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

NameTypeDescription
info{ name: string ; selectedTrack: number }Information about the playlist, such as its name and the selected track.
info.namestringThe name of the playlist.
info.selectedTracknumberThe index of the selected track in the playlist.
pluginInfoanyAdditional plugin information related to the playlist.
tracksTrackData[]An array of track data representing the tracks in the playlist.

Defined in

src/Guild/Response.ts:94


loadType

loadType: "playlist"

The type of load, indicating it's a playlist response.

Defined in

src/Guild/Response.ts:92