LavalinkTrackInfo
What a raw lavalink request information object looks like untransformed
Overview
Parameter
Type
Description
Interface
export interface LavalinkTrackInfo {
/** The Identifier of the Track */
identifier: string;
/** The Track Title / Name */
title: string;
/** The Name of the Author */
author: string;
/** The duration of the Track */
length: number;
/** The URL of the artwork if available */
artworkUrl: string | null;
/** The URL (aka Link) of the Track called URI */
uri: string;
/** The Source name of the song, e.g. soundcloud, youtube, spotify */
sourceName: SourceNames;
/** Wether the audio is seekable */
isSeekable: boolean;
/** Wether the audio is of a live stream */
isStream: boolean;
/** If isrc code is available, it's provided */
isrc: string | null;
}
Last updated