UNPKG

@duell10111/youtubei.js

Version:

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

12 lines 467 B
import { YTNode } from '../helpers.js'; import { Parser } from '../index.js'; import VideoOwner from './VideoOwner.js'; class VideoDescriptionChannelSection extends YTNode { constructor(data) { super(); this.channel = Parser.parseItem(data.channel, VideoOwner); } } VideoDescriptionChannelSection.type = 'VideoDescriptionChannelSection'; export default VideoDescriptionChannelSection; //# sourceMappingURL=VideoDescriptionChannelSection.js.map