@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
10 lines (9 loc) • 339 B
TypeScript
import { YTNode } from '../../helpers.js';
import type { IEndpoint, RawNode, SearchRequest } from '../../index.js';
export default class SearchEndpoint extends YTNode implements IEndpoint<SearchRequest> {
#private;
static type: string;
constructor(data: RawNode);
getApiPath(): string;
buildRequest(): SearchRequest;
}