chore: v8.1.0 release

This commit is contained in:
LuanRT
2023-12-27 02:25:21 +00:00
parent 1b159e5162
commit bd9ae29de3
32 changed files with 706 additions and 116 deletions

View File

@@ -0,0 +1,16 @@
import { YTNode } from '../helpers.ts';
import { Parser, type RawNode } from '../index.ts';
import ToggleButtonView from './ToggleButtonView.ts';
export default class DislikeButtonView extends YTNode {
static type = 'DislikeButtonView';
toggle_button: ToggleButtonView | null;
dislike_entity_key: string;
constructor(data: RawNode) {
super();
this.toggle_button = Parser.parseItem(data.toggleButtonViewModel, ToggleButtonView);
this.dislike_entity_key = data.dislikeEntityKey;
}
}