@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
14 lines (13 loc) • 387 B
TypeScript
import { YTNode } from '../helpers.js';
import type { RawNode } from '../index.js';
import NavigationEndpoint from './NavigationEndpoint.js';
export default class LikeButton extends YTNode {
static type: string;
target: {
video_id: string;
};
like_status: string;
likes_allowed: string;
endpoints?: NavigationEndpoint[];
constructor(data: RawNode);
}