@imput/youtubei.js
Version:
A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js
11 lines (10 loc) • 377 B
TypeScript
import { type ObservedArray, YTNode } from '../helpers.js';
import InfoRow from './InfoRow.js';
import { type RawNode } from '../index.js';
import CompactVideo from './CompactVideo.js';
export default class CarouselLockup extends YTNode {
static type: string;
info_rows: ObservedArray<InfoRow>;
video_lockup?: CompactVideo | null;
constructor(data: RawNode);
}