@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines (13 loc) • 488 B
TypeScript
import Button from '../Button.js';
import ToggleButton from '../ToggleButton.js';
import CreatorHeart from './CreatorHeart.js';
import { YTNode } from '../../helpers.js';
import type { RawNode } from '../../index.js';
export default class CommentActionButtons extends YTNode {
static type: string;
like_button: ToggleButton | null;
dislike_button: ToggleButton | null;
reply_button: Button | null;
creator_heart: CreatorHeart | null;
constructor(data: RawNode);
}