@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
TypeScript
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;
}