youtubei
Version:
Simple package to get information from youtube such as videos, playlists, channels, video information & comments, related videos, up next video, and more!
13 lines (12 loc) • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MusicSongCompact = void 0;
const MusicBase_1 = require("../MusicBase");
class MusicSongCompact extends MusicBase_1.MusicBase {
/** @hidden */
constructor(attr) {
super(attr.client);
Object.assign(this, attr);
}
}
exports.MusicSongCompact = MusicSongCompact;