@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
10 lines (9 loc) • 357 B
TypeScript
import { type RawNode } from '../index.js';
import { type ObservedArray, YTNode } from '../helpers.js';
import UniversalWatchCard from './UniversalWatchCard.js';
export default class SecondarySearchContainer extends YTNode {
static type: string;
target_id?: string;
contents: ObservedArray<UniversalWatchCard>;
constructor(data: RawNode);
}