@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
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);
}