@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
14 lines (13 loc) • 383 B
TypeScript
import Text from '../misc/Text.js';
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
export default class PdgCommentChip extends YTNode {
static type: string;
text: Text;
color_pallette: {
background_color?: string;
foreground_title_color?: string;
};
icon_type?: string;
constructor(data: RawNode);
}