slyrics
Version:
Scrape Lyrics without API Key
15 lines • 436 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Lyrics = void 0;
class Lyrics {
constructor(provider, title, artist, lyrics, url, albumCover) {
this.provider = provider;
this.title = title;
this.artist = artist;
this.lyrics = lyrics;
this.url = url;
this.albumCover = albumCover;
}
}
exports.Lyrics = Lyrics;
//# sourceMappingURL=Lyrics.js.map