Files
YouTube.js/deno/src/parser/classes/PlaylistInfoCardContent.ts
2023-04-29 05:15:47 +00:00

24 lines
772 B
TypeScript

import Text from './misc/Text.ts';
import Thumbnail from './misc/Thumbnail.ts';
import NavigationEndpoint from './NavigationEndpoint.ts';
import { YTNode } from '../helpers.ts';
import type { RawNode } from '../index.ts';
export default class PlaylistInfoCardContent extends YTNode {
static type = 'PlaylistInfoCardContent';
title: Text;
thumbnails: Thumbnail[];
video_count: Text;
channel_name: Text;
endpoint: NavigationEndpoint;
constructor(data: RawNode) {
super();
this.title = new Text(data.playlistTitle);
this.thumbnails = Thumbnail.fromResponse(data.thumbnail);
this.video_count = new Text(data.playlistVideoCount);
this.channel_name = new Text(data.channelName);
this.endpoint = new NavigationEndpoint(data.action);
}
}