UNPKG

@imput/youtubei.js

Version:

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

11 lines (10 loc) 368 B
import { YTNode } from '../../helpers.js'; import type { IEndpoint, LikeRequest, RawNode } from '../../index.js'; export default class LikeEndpoint extends YTNode implements IEndpoint<LikeRequest> { #private; static type: string; constructor(data: RawNode); getApiPath(): string; buildRequest(): LikeRequest; getParams(): string | undefined; }