UNPKG

moonlink.js

Version:

Imagine a Music... πŸŒ™βœ¨ Welcome to Moonlink.js! We invite you to create your own music bot on Discord using Lavalink, in a simple and easy way! πŸŽΆπŸ€–

21 lines β€’ 556 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Lyrics = void 0; class Lyrics { player; constructor(player) { this.player = player; } async getLyrics() { if (!this.player.node.info.isNodeLink) return null; if (!this.player.current) return; const lyrics = await this.player.node.rest.getLyrics({ encoded: this.player.current.encoded, }); return lyrics; } } exports.Lyrics = Lyrics; //# sourceMappingURL=Lyrics.js.map