UNPKG

spike-player

Version:

Complete framework to facilitate music commands using discord.js v13 & v14

23 lines (22 loc) 600 B
import { User } from "discord.js"; import { Player, Queue, RawPlaylist, Song } from ".."; export declare class PlaylistFile { player: Player; queue: Queue; name: string; author: string; url: string; songs: Song[]; /** * PlaylistFile constructor * @param {RawPlaylist} raw * @param {Queue} queue * @param {User} [requestedBy] */ constructor(raw: RawPlaylist, queue: Queue, requestedBy?: User); /** * PlaylistFile name and author in string representation * @returns {string} */ toString(): string; }