innertuber-rn
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
23 lines (22 loc) • 727 B
TypeScript
import { YTNode } from '../helpers.js';
import { type RawNode } from '../index.js';
import EngagementPanelSectionList from './EngagementPanelSectionList.js';
import Text from './misc/Text.js';
export default class DescriptionPreviewView extends YTNode {
static type: string;
description: Text;
max_lines: number;
truncation_text: Text;
always_show_truncation_text: boolean;
more_endpoint?: {
show_engagement_panel_endpoint: {
engagement_panel: EngagementPanelSectionList | null;
engagement_panel_popup_type: string;
identifier: {
surface: string;
tag: string;
};
};
};
constructor(data: RawNode);
}