mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-20 04:51:16 +00:00
15 lines
409 B
TypeScript
15 lines
409 B
TypeScript
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;
|
|
}
|
|
} |