mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-01 10:26:21 +00:00
13 lines
340 B
TypeScript
13 lines
340 B
TypeScript
import { YTNode } from '../../helpers.js';
|
|
import type { RawNode } from '../../index.js';
|
|
|
|
export default class HideEngagementPanelEndpoint extends YTNode {
|
|
static type = 'HideEngagementPanelEndpoint';
|
|
|
|
public panel_identifier: string;
|
|
|
|
constructor(data: RawNode) {
|
|
super();
|
|
this.panel_identifier = data.panelIdentifier;
|
|
}
|
|
} |