mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-20 04:51:16 +00:00
feat(parser): Add ChangeEngagementPanelVisibilityAction
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { YTNode } from '../../helpers.js';
|
||||
import type { RawNode } from '../../index.js';
|
||||
|
||||
export default class ChangeEngagementPanelVisibilityAction extends YTNode {
|
||||
static type = 'ChangeEngagementPanelVisibilityAction';
|
||||
|
||||
public target_id: string;
|
||||
public visibility: string;
|
||||
|
||||
constructor(data: RawNode) {
|
||||
super();
|
||||
this.target_id = data.targetId;
|
||||
this.visibility = data.visibility;
|
||||
}
|
||||
}
|
||||
@@ -9,6 +9,7 @@ export { default as AccountItemSection } from './classes/AccountItemSection.js';
|
||||
export { default as AccountItemSectionHeader } from './classes/AccountItemSectionHeader.js';
|
||||
export { default as AccountSectionList } from './classes/AccountSectionList.js';
|
||||
export { default as AppendContinuationItemsAction } from './classes/actions/AppendContinuationItemsAction.js';
|
||||
export { default as ChangeEngagementPanelVisibilityAction } from './classes/actions/ChangeEngagementPanelVisibilityAction.js';
|
||||
export { default as GetMultiPageMenuAction } from './classes/actions/GetMultiPageMenuAction.js';
|
||||
export { default as OpenPopupAction } from './classes/actions/OpenPopupAction.js';
|
||||
export { default as SendFeedbackAction } from './classes/actions/SendFeedbackAction.js';
|
||||
|
||||
Reference in New Issue
Block a user