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