UNPKG

@antoniojps/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube.

12 lines 410 B
import { YTNode } from '../helpers.js'; export default class MusicDownloadStateBadge extends YTNode { static type = 'MusicDownloadStateBadge'; playlist_id; supported_download_states; constructor(data) { super(); this.playlist_id = data.playlistId; this.supported_download_states = data.supportedDownloadStates; } } //# sourceMappingURL=MusicDownloadStateBadge.js.map