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