@antoniojps/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube.
13 lines (12 loc) • 328 B
TypeScript
import { type InnerTubeClient } from './Misc.js';
export interface GetVideoInfoOptions {
/**
* InnerTube client.
*/
client?: InnerTubeClient;
/**
* Proof of Origin token, bound to the video ID being requested.
* If not provided, session bound token will be used.
*/
po_token?: string;
}