@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines (13 loc) • 387 B
TypeScript
import { YTNode } from '../../helpers.js';
import { type RawNode } from '../../index.js';
type Identifier = {
surface: string;
tag: string;
};
export default class UpdateEngagementPanelContentCommand extends YTNode {
static type: string;
content_source_panel_identifier?: Identifier;
target_panel_identifier?: Identifier;
constructor(data: RawNode);
}
export {};