UNPKG

spike-player

Version:

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

15 lines (14 loc) 401 B
import { RawApplePlaylist } from '..'; /** * @param {string} url * @returns {Promise<{ artist: string, title: string }>} */ export declare function getSong(url: string): Promise<{ artist: string; title: string; }>; /** * @param {string} url * @returns {Promise<?RawApplePlaylist>} */ export declare function getPlaylist(url: string): Promise<RawApplePlaylist | undefined>;