innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
11 lines • 373 B
JavaScript
import { YTNode } from '../helpers.js';
import Text from './misc/Text.js';
class MusicCardShelfHeaderBasic extends YTNode {
constructor(data) {
super();
this.title = new Text(data.title);
}
}
MusicCardShelfHeaderBasic.type = 'MusicCardShelfHeaderBasic';
export default MusicCardShelfHeaderBasic;
//# sourceMappingURL=MusicCardShelfHeaderBasic.js.map