chore: v6.4.0 release

This commit is contained in:
LuanRT
2023-09-10 05:09:20 +00:00
parent 1b557f25e3
commit f2d673ac95
29 changed files with 457 additions and 32 deletions

View File

@@ -0,0 +1,20 @@
import { YTNode } from '../helpers.ts';
import type { RawNode } from '../index.ts';
import Parser from '../index.ts';
import { Text } from '../misc.ts';
import Button from './Button.ts';
export default class VideoDescriptionTranscriptSection extends YTNode {
static type = 'VideoDescriptionTranscriptSection';
section_title: Text;
sub_header_text: Text;
primary_button: Button | null;
constructor(data: RawNode) {
super();
this.section_title = new Text(data.sectionTitle);
this.sub_header_text = new Text(data.subHeaderText);
this.primary_button = Parser.parseItem(data.primaryButton, Button);
}
}