UNPKG

@antoniojps/youtubei.js

Version:

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

11 lines 342 B
import { YTNode } from '../helpers.js'; import Text from './misc/Text.js'; export default class MusicCardShelfHeaderBasic extends YTNode { static type = 'MusicCardShelfHeaderBasic'; title; constructor(data) { super(); this.title = new Text(data.title); } } //# sourceMappingURL=MusicCardShelfHeaderBasic.js.map