LavalinkTrack

The Raw LavalinkTrack data when you search from the node manually without the player.search method. it won't be recognised as a "Track Object" tho.

Overview

ParameterTypeDescription

encoded

The Base64 encoded String

info

Track Information, raw by lavalink

pluginInfo

Plugin Information, raw by lavalink

Interface

export interface LavalinkTrack {
    /** The Base 64 encoded String */
    encoded?: Base64;
    /** Track Information */
    info: LavalinkTrackInfo;
    /** Plugin Information from Lavalink */
    pluginInfo: Partial<PluginInfo>;
}

Last updated