@duell10111/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
12 lines • 496 B
JavaScript
import { YTNode } from '../helpers.js';
import { Parser } from '../index.js';
import CommentsEntryPoint from './CommentsEntryPoint.js';
class VideoDescriptionCommentsSection extends YTNode {
constructor(data) {
super();
this.content = Parser.parseItem(data.content, CommentsEntryPoint);
}
}
VideoDescriptionCommentsSection.type = 'VideoDescriptionCommentsSection';
export default VideoDescriptionCommentsSection;
//# sourceMappingURL=VideoDescriptionCommentsSection.js.map