UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

19 lines (18 loc) 548 B
import { YTNode } from '../../helpers.js'; import type { RawNode } from '../../index.js'; import Thumbnail from '../misc/Thumbnail.js'; export default class CreatorHeart extends YTNode { static type: string; creator_thumbnail: Thumbnail[]; heart_icon_type?: string; heart_color: { basic_color_palette_data: { foreground_title_color: string; }; }; hearted_tooltip: string; is_hearted: boolean; is_enabled: boolean; kennedy_heart_color_string: string; constructor(data: RawNode); }