Files
YouTube.js/src/parser/classes/ChannelVideoPlayer.ts

22 lines
590 B
TypeScript

import Text from './misc/Text.js';
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
export default class ChannelVideoPlayer extends YTNode {
static type = 'ChannelVideoPlayer';
id: string;
title: Text;
description: Text;
view_count: Text;
published_time: Text;
constructor(data: RawNode) {
super();
this.id = data.videoId;
this.title = new Text(data.title);
this.description = new Text(data.description);
this.view_count = new Text(data.viewCountText);
this.published_time = new Text(data.publishedTimeText);
}
}